Skip to content

Commit 094030a

Browse files
committed
fix(settings): make personal info page accessible again
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 3b15826 commit 094030a

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

apps/settings/src/components/PersonalInfo/LanguageSection/LanguageSection.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
<template>
77
<section class="language-section">
8-
<h3 class="language-section__heading">{{ t('settings', 'Language') }}</h3>
8+
<h3 class="language-section__heading">
9+
<label :for="inputId">{{ t('settings', 'Language') }}</label>
10+
</h3>
911

1012
<LanguageSectionEntry
1113
v-if="isEditable"

apps/settings/src/components/PersonalInfo/LocaleSection/LocaleSection.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
<template>
77
<section class="locale-section">
8-
<h3 class="locale-section__heading">{{ t('settings', 'Locale') }}</h3>
8+
<h3 class="locale-section__heading">
9+
<label :for="inputId">{{ t('settings', 'Locale') }}</label>
10+
</h3>
911

1012
<LocaleSectionEntry
1113
v-if="isEditable"

apps/settings/src/components/PersonalInfo/ProfileSection/ProfileSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
:model-value="profileEnabled"
1616
:label="t('settings', 'Nextcloud profile')"
1717
:disabled="loading"
18-
@update:model-value="saveEnableProfile" />
18+
@update:modelValue="saveEnableProfile" />
1919
<NcFormBoxButton
2020
v-if="profileEnabled"
2121
:label="t('settings', 'View full profile')"

apps/settings/src/components/PersonalInfo/shared/VisibilityScopeControl.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
<NcSelect
4040
class="visibility-scope__select"
41+
:aria-label-combobox="t('settings', 'Visibility')"
4142
:aria-label-listbox="t('settings', 'Visibility')"
4243
:clearable="false"
4344
:options="visibilityOptions"
@@ -61,6 +62,7 @@
6162

6263
<NcSelect
6364
class="visibility-scope__select"
65+
:aria-label-combobox="t('settings', 'Scope')"
6466
:aria-label-listbox="t('settings', 'Scope')"
6567
:clearable="false"
6668
:options="scopeOptions"

0 commit comments

Comments
 (0)