summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-05-08 14:12:20 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2023-05-15 14:31:32 +0200
commita99265bfbecbafe3fb9d83519eb217d2b6da168d (patch)
tree65f55c45aa030e541f4dcf37c153dcfef2539377 /apps
parent2133b0ecddecb56877aa5c16a080e6b584a6f96e (diff)
downloadnextcloud-server-a99265bfbecbafe3fb9d83519eb217d2b6da168d.tar.gz
nextcloud-server-a99265bfbecbafe3fb9d83519eb217d2b6da168d.zip
fix(user_status): Group custom message input elements and assign label to emoji selector
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_status/src/components/CustomMessageInput.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/user_status/src/components/CustomMessageInput.vue b/apps/user_status/src/components/CustomMessageInput.vue
index 4fd649dc166..5e313c97428 100644
--- a/apps/user_status/src/components/CustomMessageInput.vue
+++ b/apps/user_status/src/components/CustomMessageInput.vue
@@ -19,9 +19,11 @@
-
-->
<template>
- <div class="custom-input">
+ <div class="custom-input" role="group">
<NcEmojiPicker container=".custom-input" @select="setIcon">
- <NcButton class="custom-input__emoji-button" type="tertiary">
+ <NcButton type="tertiary"
+ class="custom-input__emoji-button"
+ :aria-label="t('user_status', 'Emoji for your status message')">
{{ visibleIcon }}
</NcButton>
</NcEmojiPicker>