diff --git a/src/components/AppNavigation/Settings/SettingsImportContacts.vue b/src/components/AppNavigation/Settings/SettingsImportContacts.vue index e69934ec1..26ca8b052 100644 --- a/src/components/AppNavigation/Settings/SettingsImportContacts.vue +++ b/src/components/AppNavigation/Settings/SettingsImportContacts.vue @@ -29,6 +29,7 @@ :options="options" :disabled="isSingleAddressbook || isImporting" :placeholder="t('contacts', 'Contacts')" + :aria-label-combobox="t('contacts', 'Pick an address book')" label="displayName" class="import-contact__modal-addressbook__select"> - - diff --git a/src/components/AppNavigation/Settings/SettingsSortContacts.vue b/src/components/AppNavigation/Settings/SettingsSortContacts.vue index 097bb4c15..0a26196df 100644 --- a/src/components/AppNavigation/Settings/SettingsSortContacts.vue +++ b/src/components/AppNavigation/Settings/SettingsSortContacts.vue @@ -5,19 +5,15 @@ @@ -84,11 +80,3 @@ export default { }, } - - diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue index 810c9ec29..1e2080f1a 100644 --- a/src/components/Properties/PropertyGroups.vue +++ b/src/components/Properties/PropertyGroups.vue @@ -23,6 +23,7 @@ :options="groups" :no-wrap="true" :placeholder="t('contacts', 'Add contact in group')" + :aria-label-combobox="t('contacts', 'Add contact in group')" :multiple="true" :keep-open="true" :clearable="true" diff --git a/src/components/Properties/PropertyMultipleText.vue b/src/components/Properties/PropertyMultipleText.vue index 93d110877..906c3f8b9 100644 --- a/src/components/Properties/PropertyMultipleText.vue +++ b/src/components/Properties/PropertyMultipleText.vue @@ -38,6 +38,7 @@ v-model="localType" :options="options" :placeholder="t('contacts', 'Select type')" + :aria-label-combobox="t('contacts', 'Select type')" :taggable="true" tag-placeholder="create" label="name" diff --git a/src/components/Properties/PropertySelect.vue b/src/components/Properties/PropertySelect.vue index 2d111cfd4..deb01bbd2 100644 --- a/src/components/Properties/PropertySelect.vue +++ b/src/components/Properties/PropertySelect.vue @@ -35,6 +35,7 @@ :options="selectableOptions" :no-wrap="true" :placeholder="t('contacts', 'Select option')" + :aria-label-combobox="t('contacts', 'Select option')" :disabled="isSingleOption || isReadOnly" label="name" @update:model-value="updateValue" /> diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue index f183c4a40..c40639268 100644 --- a/src/components/Properties/PropertyText.vue +++ b/src/components/Properties/PropertyText.vue @@ -28,6 +28,7 @@ v-model="localType" :options="options" :placeholder="t('contacts', 'Select type')" + :aria-label-combobox="t('contacts', 'Select type')" :taggable="true" tag-placeholder="create" :disabled="isReadOnly"