diff options
Diffstat (limited to 'viewer/src/components/LdCommandSort.vue')
-rw-r--r-- | viewer/src/components/LdCommandSort.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/components/LdCommandSort.vue b/viewer/src/components/LdCommandSort.vue index 1d2eac3..1eef5d3 100644 --- a/viewer/src/components/LdCommandSort.vue +++ b/viewer/src/components/LdCommandSort.vue | |||
@@ -25,7 +25,7 @@ | |||
25 | </a> | 25 | </a> |
26 | <b-dropdown-item v-for="(sort, idx) in SORTS" :key="idx" :value="idx"> | 26 | <b-dropdown-item v-for="(sort, idx) in SORTS" :key="idx" :value="idx"> |
27 | <fa-icon :icon="['far', idx === selectedSort ? 'dot-circle' : 'circle']" /> | 27 | <fa-icon :icon="['far', idx === selectedSort ? 'dot-circle' : 'circle']" /> |
28 | <span :class="$style.ml1">{{ sort.name }}</span> | 28 | <span :class="$style.dropdownLabel">{{ sort.name }}</span> |
29 | </b-dropdown-item> | 29 | </b-dropdown-item> |
30 | </b-dropdown> | 30 | </b-dropdown> |
31 | </template> | 31 | </template> |
@@ -38,7 +38,7 @@ import ItemSortFn from "@/services/itemSortFn"; | |||
38 | @Component | 38 | @Component |
39 | export default class LdCommandSort extends Vue { | 39 | export default class LdCommandSort extends Vue { |
40 | readonly SORTS = [ | 40 | readonly SORTS = [ |
41 | { name: this.$t("command.sort.byName"), fn: ItemSortFn.sortByName }, | 41 | { name: this.$t("command.sort.byNameAsc"), fn: ItemSortFn.sortByNameAsc }, |
42 | { name: this.$t("command.sort.byDateDesc"), fn: ItemSortFn.sortByDateDesc }, | 42 | { name: this.$t("command.sort.byDateDesc"), fn: ItemSortFn.sortByDateDesc }, |
43 | ]; | 43 | ]; |
44 | 44 | ||
@@ -51,7 +51,7 @@ export default class LdCommandSort extends Vue { | |||
51 | </script> | 51 | </script> |
52 | 52 | ||
53 | <style lang="scss" module> | 53 | <style lang="scss" module> |
54 | .ml1 { | 54 | .dropdownLabel { |
55 | margin-left: 0.5em; | 55 | margin-left: 0.5em; |
56 | } | 56 | } |
57 | </style> | 57 | </style> |