Skip to content

Commit 027cb30

Browse files
committed
Review fixes
1 parent a2ecc62 commit 027cb30

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

ui/src/components/ConversationList/ConversationList.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,12 @@ const ConversationItem = memo(
151151
{/* Full-row click target so the whole bubble (not just the text) selects */}
152152
<button
153153
type="button"
154-
aria-label={conv.title}
154+
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+
}
155160
aria-current={isSelected ? "page" : undefined}
156161
className="absolute inset-0 cursor-pointer rounded-md"
157162
onClick={() => onSelect(conv.id)}

0 commit comments

Comments
 (0)