Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 16:12:14 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 16:12:14 +0300
commitd8ed3ba65cd8d0e0bac80f0d4442182e6d347b96 (patch)
tree1a7aa01fe83d0fb3c3709c6bb0c58f4d395c6ab7 /src/components
parent68fc05e55395c8cbc83b3ca4e9765cfd3531e454 (diff)
Add missing aria label to buttons to show conversation actionsadd-missing-aria-label-to-buttons-to-show-conversation-actions
The default aria label for actions is "Actions", but the default value is overriden to an empty string when used in a list item, so it needs to be explicitly set. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/LeftSidebar/ConversationsList/Conversation.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue
index fc6932361..6baeaa2cb 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.vue
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue
@@ -23,6 +23,7 @@
<ListItem :title="item.displayName"
:class="{'unread-mention-conversation': item.unreadMention}"
:anchor-id="`conversation_${item.token}`"
+ :actions-aria-label="t('spreed', 'Conversation actions')"
:active="isActive"
:to="to"
:bold="!!item.unreadMessages"