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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Reis <vinicius.reis@nextcloud.com>2022-07-30 00:09:29 +0300
committernextcloud-command <nextcloud-command@users.noreply.github.com>2022-07-30 11:15:47 +0300
commitb3eecc09e11fd860a5b1dee69e85cc5f9255b994 (patch)
tree65c5ddb8dc0a32fae12b6b541441759fa5472814 /src/components/Editor/SessionList.vue
parent64e600659bed3f76e58f5813e3ae70eb52cd6d26 (diff)
♿️ (#2737): add missing label/title
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'src/components/Editor/SessionList.vue')
-rw-r--r--src/components/Editor/SessionList.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Editor/SessionList.vue b/src/components/Editor/SessionList.vue
index 8f808ec78..d97a55aff 100644
--- a/src/components/Editor/SessionList.vue
+++ b/src/components/Editor/SessionList.vue
@@ -23,7 +23,9 @@
<template>
<Popover class="session-list" placement="bottom">
<button slot="trigger"
- v-tooltip.bottom="t('text', 'Active people')"
+ v-tooltip.bottom="label"
+ :title="label"
+ :aria-label="label"
class="avatar-list">
<div class="avatardiv icon-group" />
<AvatarWrapper v-for="session in sessionsVisible"
@@ -90,6 +92,9 @@ export default {
}
},
computed: {
+ label() {
+ return t('text', 'Active people')
+ },
showAuthorAnnotations: {
get() {
return this.$store.state.showAuthorAnnotations