diff --git a/src/components/ChatPanel.tsx b/src/components/ChatPanel.tsx index fd43c41..247e4cf 100644 --- a/src/components/ChatPanel.tsx +++ b/src/components/ChatPanel.tsx @@ -221,7 +221,7 @@ export default function ChatPanel({ chatId, projectSlug }: Props) {
{AUTHOR_ICON[msg.author_type] || "👤"} - {msg.author?.name || msg.author?.slug || "Unknown"} + {msg.author_type === "system" ? "System" : (msg.author?.name || msg.author?.slug || "Unknown")} · {new Date(msg.created_at).toLocaleString("ru-RU", { hour: "2-digit", minute: "2-digit" })}