mirror of
https://github.com/coder/coder.git
synced 2026-09-23 05:43:53 +08:00
fix: remove bold font-weight from unread chats in agents sidebar (#23725)
Removes the `font-semibold` class applied to unread chat titles in the `/agents` sidebar. The unread indicator dot already provides sufficient visual distinction for unread chats.
This commit is contained in:
@@ -528,7 +528,6 @@ const ChatTreeNode: FC<ChatTreeNodeProps> = ({ chat, isChildNode }) => {
|
||||
className={cn(
|
||||
"block flex-1 truncate text-[13px] text-content-primary",
|
||||
isActive && "font-medium",
|
||||
chat.has_unread && !isActiveChat && "font-semibold",
|
||||
// Pulse-only in sidebar (no spinner) — space-constrained card layout.
|
||||
isRegeneratingThisChat && "animate-pulse",
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user