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:
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