Skip to content

Commit 68eee1a

Browse files
authored
Merge pull request #17789 from nextcloud/fix/left-sidebar-alignment
fix: align buttons in the navigation
2 parents beefe40 + 60e7f4c commit 68eee1a

3 files changed

Lines changed: 412 additions & 322 deletions

File tree

src/components/LeftSidebar/ConversationsList/ConversationsListVirtual.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { useConversationTagsStore } from '../../../stores/conversationTags.ts'
1818
export type VirtualListItem = (Conversation | TagHeaderItem) & { _key?: string }
1919
2020
const props = defineProps<{
21+
listAriaLabelledBy?: string
2122
conversations: Conversation[]
2223
loading?: boolean
2324
compact?: boolean
@@ -316,6 +317,7 @@ defineExpose({
316317
<LoadingPlaceholder v-if="loading" type="conversations" />
317318
<ul
318319
v-else
320+
:aria-labelledby="listAriaLabelledBy"
319321
:style="wrapperProps.style">
320322
<template v-for="item in list" :key="item.data._key ?? item.data.id">
321323
<ConversationTagHeader

0 commit comments

Comments
 (0)