We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ecc62 commit 027cb30Copy full SHA for 027cb30
1 file changed
ui/src/components/ConversationList/ConversationList.tsx
@@ -151,7 +151,12 @@ const ConversationItem = memo(
151
{/* Full-row click target so the whole bubble (not just the text) selects */}
152
<button
153
type="button"
154
- aria-label={conv.title}
+ aria-label={
155
+ `${conv.title}, ${conv.messages.length} messages` +
156
+ (conv.models.length > 0
157
+ ? `, ${conv.models.length} model${conv.models.length !== 1 ? "s" : ""}`
158
+ : "")
159
+ }
160
aria-current={isSelected ? "page" : undefined}
161
className="absolute inset-0 cursor-pointer rounded-md"
162
onClick={() => onSelect(conv.id)}
0 commit comments