diff options
Diffstat (limited to 'src-vue/src/components/ModsMenu.vue')
-rw-r--r-- | src-vue/src/components/ModsMenu.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src-vue/src/components/ModsMenu.vue b/src-vue/src/components/ModsMenu.vue index de247984..03eea787 100644 --- a/src-vue/src/components/ModsMenu.vue +++ b/src-vue/src/components/ModsMenu.vue @@ -19,7 +19,7 @@ <el-input v-model="$store.state.search.searchValue" :placeholder="$t('mods.menu.search')" clearable /> <el-select v-if="!showingLocalMods" - v-model="$store.state.search.sortValue" + v-model="$store.state.search.sortValue" :placeholder="$t('mods.menu.sort_mods')" > <el-option @@ -63,7 +63,7 @@ export default defineComponent({ this.$store.state.search.sortValue = this.sortValues[3].value; }, computed: { - sortValues(): {label: string, value: string}[] { + sortValues(): { label: string, value: string }[] { return Object.keys(SortOptions).map((key: string) => ({ value: key, label: this.$t('mods.menu.sort.' + Object.values(SortOptions)[Object.keys(SortOptions).indexOf(key)]) @@ -85,7 +85,7 @@ export default defineComponent({ margin: 8px 0 16px 5px; } -.fc_mods__menu h5:not(:first-child){ +.fc_mods__menu h5:not(:first-child) { margin-top: 32px; } |