We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e6006 commit a9fa42cCopy full SHA for a9fa42c
1 file changed
src/components/Editor/SessionList.vue
@@ -23,7 +23,9 @@
23
<template>
24
<Popover class="session-list" placement="bottom">
25
<button slot="trigger"
26
- v-tooltip.bottom="t('text', 'Active people')"
+ v-tooltip.bottom="label"
27
+ :title="label"
28
+ :aria-label="label"
29
class="avatar-list">
30
<div class="avatardiv icon-group" />
31
<AvatarWrapper v-for="session in sessionsVisible"
@@ -90,6 +92,9 @@ export default {
90
92
}
91
93
},
94
computed: {
95
+ label() {
96
+ return t('text', 'Active people')
97
+ },
98
showAuthorAnnotations: {
99
get() {
100
return this.$store.state.showAuthorAnnotations
0 commit comments