Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions apps/desktop/src/renderer/settings/bot-chat-detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,15 @@ export function BotChatChannelDetail(props: {
<h3>
{providerPresentation.label}
{/* Astryx convergence: readiness reads as the shared StatusDot +
text idiom — "no decorative Badge" (astryx docs principles). */}
text idiom — "no decorative Badge" (astryx docs principles).
The adjacent text owns the heading's status name, so the dot
is decorative here instead of announcing the same label. */}
<span className="settingsStatus">
<StatusDot variant={dotForStatus(readinessCopy.tone)} label={readinessCopy.label} />
<StatusDot
variant={dotForStatus(readinessCopy.tone)}
label={readinessCopy.label}
aria-hidden="true"
/>
<span>{readinessCopy.label}</span>
</span>
</h3>
Expand Down
Loading