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/LanguageSelector.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/LanguageSelector.vue')
-rw-r--r-- | src-vue/src/components/LanguageSelector.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/components/LanguageSelector.vue b/src-vue/src/components/LanguageSelector.vue index a99ef0e5..9bb1d97a 100644 --- a/src-vue/src/components/LanguageSelector.vue +++ b/src-vue/src/components/LanguageSelector.vue @@ -44,7 +44,7 @@ export default defineComponent({ }, ] }), - mounted: async function() { + mounted: async function () { const lang: string = await persistentStore.get('lang') as string; this.value = lang; }, |