diff options
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue b/apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue index df847e87442..9e964eb8e3a 100644 --- a/apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue +++ b/apps/settings/src/components/PersonalInfo/LanguageSection/Language.vue @@ -34,7 +34,9 @@ :value="commonLanguage.code"> {{ commonLanguage.name }} </option> - <optgroup label="––––––––––" /> + <option disabled> + ────────── + </option> <option v-for="otherLanguage in otherLanguages" :key="otherLanguage.code" :selected="language.code === otherLanguage.code" |