Browse Source

Fix scrolltobottom button aria label

Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
pull/3931/head
Marco Ambrosini 5 years ago
parent
commit
7825b56799
  1. 5
      src/components/MessagesList/MessagesList.vue

5
src/components/MessagesList/MessagesList.vue

@ -53,6 +53,7 @@ get the messagesList array and loop through the list to generate the messages.
</template>
<transition name="fade">
<button v-show="!isScrolledToBottom"
:aria-label="scrollTobottomAriaLabel"
class="scroll-to-bottom"
@click="scrollToBottom">
<ChevronDown decorative
@ -211,6 +212,10 @@ export default {
chatIdentifier() {
return this.token + ':' + this.isParticipant + ':' + this.isInLobby
},
scrollToBottomAriaLabel() {
return t('spreed', 'Scroll to bottom')
},
},
watch: {

Loading…
Cancel
Save