We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents beefe40 + 60e7f4c commit 68eee1aCopy full SHA for 68eee1a
3 files changed
src/components/LeftSidebar/ConversationsList/ConversationsListVirtual.vue
@@ -18,6 +18,7 @@ import { useConversationTagsStore } from '../../../stores/conversationTags.ts'
18
export type VirtualListItem = (Conversation | TagHeaderItem) & { _key?: string }
19
20
const props = defineProps<{
21
+ listAriaLabelledBy?: string
22
conversations: Conversation[]
23
loading?: boolean
24
compact?: boolean
@@ -316,6 +317,7 @@ defineExpose({
316
317
<LoadingPlaceholder v-if="loading" type="conversations" />
318
<ul
319
v-else
320
+ :aria-labelledby="listAriaLabelledBy"
321
:style="wrapperProps.style">
322
<template v-for="item in list" :key="item.data._key ?? item.data.id">
323
<ConversationTagHeader
0 commit comments