diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-09 23:35:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 23:35:04 +0200 |
commit | 007e32fd632da33ea1b1442f9a55f6ad008ad177 (patch) | |
tree | 32de00dddb0a5ea3cdbf0f4c24db92f6a0713e32 /src-vue/src/components/ModsMenu.vue | |
parent | 1ce900ca2d5cf91ae410c2ec918e1431aa15a677 (diff) | |
download | FlightCore-007e32fd632da33ea1b1442f9a55f6ad008ad177.tar.gz FlightCore-007e32fd632da33ea1b1442f9a55f6ad008ad177.zip |
style: Partially autoformat Vue source files (#326)
* style: Add/remove spaces where applicable
* style: Add missing newlines
* style: Fix indentation
* style: Add newlines between CSS classes
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; } |