aboutsummaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2024-01-11 15:15:31 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2024-01-12 14:16:59 +0100
commita3f05bbda6a45c2b961e92191ea880047d62f343 (patch)
tree948a3a83f6eb704096ce65f3794f1385fa5bcb90 /core/src
parentb9540a8964cb6f7edb9e5e5631c18322cbfd77ad (diff)
downloadnextcloud-server-a3f05bbda6a45c2b961e92191ea880047d62f343.tar.gz
nextcloud-server-a3f05bbda6a45c2b961e92191ea880047d62f343.zip
fix(a11y): Aria-hide contacts menu icon images
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src')
-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>