We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee8d06 commit 94a43e0Copy full SHA for 94a43e0
src/components/MessagesList/MessagesList.vue
@@ -53,6 +53,7 @@ get the messagesList array and loop through the list to generate the messages.
53
</template>
54
<transition name="fade">
55
<button v-show="!isScrolledToBottom"
56
+ :aria-label="scrollTobottomAriaLabel"
57
class="scroll-to-bottom"
58
@click="scrollToBottom">
59
<ChevronDown decorative
@@ -211,6 +212,10 @@ export default {
211
212
chatIdentifier() {
213
return this.token + ':' + this.isParticipant + ':' + this.isInLobby
214
},
215
+
216
+ scrollToBottomAriaLabel() {
217
+ return t('spreed', 'Scroll to bottom')
218
+ },
219
220
221
watch: {
0 commit comments