Skip to content
Open
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
6 changes: 3 additions & 3 deletions site/src/pages/AgentsPage/AgentChatPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ export const AgentChatPageView: FC<AgentChatPageViewProps> = ({
role="status"
aria-label={unavailableModelNotice}
aria-live="polite"
className="flex shrink-0 items-center gap-2 border-b border-border-warning bg-surface-orange px-4 py-2 text-xs text-content-primary"
className="flex shrink-0 items-center gap-2 bg-surface-orange px-4 py-2 text-xs text-content-primary"
>
<TriangleAlertIcon className="size-4 shrink-0 text-content-warning" />
{unavailableModelNotice}
Expand All @@ -940,14 +940,14 @@ export const AgentChatPageView: FC<AgentChatPageViewProps> = ({
<div
role="status"
aria-live="polite"
className="flex shrink-0 items-center gap-2 border-b border-border-warning bg-surface-orange px-4 py-2 text-xs text-content-primary"
className="flex shrink-0 items-center gap-2 bg-surface-orange px-4 py-2 text-xs text-content-primary"
>
<TriangleAlertIcon className="size-4 shrink-0 text-content-warning" />
{chatOwnerWarning}
</div>
)}
{isArchived && (
<div className="flex shrink-0 items-center gap-2 border-b border-border-default bg-surface-secondary px-4 py-2 text-xs text-content-secondary">
<div className="flex shrink-0 items-center gap-2 bg-surface-secondary px-4 py-2 text-xs text-content-secondary">
<ArchiveIcon className="size-4 shrink-0" />
This agent has been archived and is read-only.
</div>
Expand Down
Loading