aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2024-01-15 21:37:11 +0100
committerGitHub <noreply@github.com>2024-01-15 21:37:11 +0100
commit82cd4f8f0d398533bf377930154f90dae4bda40e (patch)
tree3cad5ffaa02ac258542c391a7f6928b98bc80238 /core
parent6c55500dbb0d616df7f8e61755b04d0607f640e0 (diff)
parenta3f05bbda6a45c2b961e92191ea880047d62f343 (diff)
downloadnextcloud-server-82cd4f8f0d398533bf377930154f90dae4bda40e.tar.gz
nextcloud-server-82cd4f8f0d398533bf377930154f90dae4bda40e.zip
Merge pull request #42739 from nextcloud/fix/a11y/aria-hide-contacts-menu-images-stable28
[stable28] fix(a11y): Aria-hide contacts menu icon images
Diffstat (limited to 'core')
-rw-r--r--core/src/components/ContactsMenu/Contact.vue4
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>