diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2024-01-11 15:15:31 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2024-01-11 15:15:31 +0100 |
commit | 5198c1ce2b577535547e606ea82bdfdb9c6092c8 (patch) | |
tree | f74c9644ebee64ebcd84511506c890431092da52 /core | |
parent | d128b4a04b1d81881e19b93f8a3dd37b729ab91a (diff) | |
download | nextcloud-server-5198c1ce2b577535547e606ea82bdfdb9c6092c8.tar.gz nextcloud-server-5198c1ce2b577535547e606ea82bdfdb9c6092c8.zip |
fix(a11y): Aria-hide contacts menu icon images
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/components/ContactsMenu/Contact.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/ContactsMenu/Contact.vue b/core/src/components/ContactsMenu/Contact.vue index 72fe33cee22..a450127b937 100644 --- a/core/src/components/ContactsMenu/Contact.vue +++ b/core/src/components/ContactsMenu/Contact.vue @@ -43,13 +43,13 @@ :href="action.hyperlink" class="other-actions"> <template #icon> - <img class="contact__action__icon" :src="action.icon"> + <img aria-hidden="true" class="contact__action__icon" :src="action.icon"> </template> {{ action.title }} </NcActionLink> <NcActionText v-else :key="idx" class="other-actions"> <template #icon> - <img class="contact__action__icon" :src="action.icon"> + <img aria-hidden="true" class="contact__action__icon" :src="action.icon"> </template> {{ action.title }} </NcActionText> |