Skip to content

Commit a9fa42c

Browse files
author
Vinicius Reis
committed
♿️ (#2737): add missing label/title
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
1 parent 64e6006 commit a9fa42c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/components/Editor/SessionList.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
<template>
2424
<Popover class="session-list" placement="bottom">
2525
<button slot="trigger"
26-
v-tooltip.bottom="t('text', 'Active people')"
26+
v-tooltip.bottom="label"
27+
:title="label"
28+
:aria-label="label"
2729
class="avatar-list">
2830
<div class="avatardiv icon-group" />
2931
<AvatarWrapper v-for="session in sessionsVisible"
@@ -90,6 +92,9 @@ export default {
9092
}
9193
},
9294
computed: {
95+
label() {
96+
return t('text', 'Active people')
97+
},
9398
showAuthorAnnotations: {
9499
get() {
95100
return this.$store.state.showAuthorAnnotations

0 commit comments

Comments
 (0)