diff --git a/src/components/docker-registry-ui.riot b/src/components/docker-registry-ui.riot
index c140ece..104e07b 100644
--- a/src/components/docker-registry-ui.riot
+++ b/src/components/docker-registry-ui.riot
@@ -55,7 +55,7 @@ along with this program. If not, see .
filter-results="{ state.filter }"
on-authentication="{ onAuthentication }"
use-control-cache-header="{ truthy(props.useControlCacheHeader) }"
- taglist-order="{ taglistOrderParser(props.taglistOrder) }"
+ taglist-order="{ props.taglistOrder }"
>
@@ -130,7 +130,6 @@ along with this program. If not, see .
import { stripHttps, getRegistryServers, setRegistryServers, truthy, stringToArray } from '../scripts/utils';
import router from '../scripts/router';
import { loadTheme } from '../scripts/theme';
- import { taglistOrderParser } from '../scripts/taglist-order';
export default {
components: {
@@ -243,7 +242,6 @@ along with this program. If not, see .
version,
truthy,
stringToArray,
- taglistOrderParser,
};