Browse Source

Fix scroll to bottom aria label

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/4084/head
Joas Schilling 5 years ago
parent
commit
5d618d7257
No known key found for this signature in database GPG Key ID: 7076EA9751AACDDA
  1. 3
      src/components/CallView/Grid/Grid.vue
  2. 2
      src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue
  3. 2
      src/components/MessagesList/MessagesList.vue

3
src/components/CallView/Grid/Grid.vue

@ -81,7 +81,8 @@
<button v-if="hasNextPage && gridWidth > 0 && isStripe && showVideoOverlay"
class="grid-navigation grid-navigation__next"
@click="handleClickNext">
<ChevronRight decorative :size="24" />
<ChevronRight decorative
:size="24" />
</button>
</div>
<LocalVideo

2
src/components/LeftSidebar/NewGroupConversation/NewGroupConversation.vue

@ -28,7 +28,7 @@
:aria-label="t('spreed','Create a new group conversation')"
@click="showModal">
<Plus decorative
size="24" />
:size="24" />
</button>
<!-- New group form -->
<Modal

2
src/components/MessagesList/MessagesList.vue

@ -53,7 +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"
:aria-label="scrollToBottomAriaLabel"
class="scroll-to-bottom"
@click="scrollToBottom">
<ChevronDown decorative

Loading…
Cancel
Save