From a57f6f48b427922d1719a69ac4534a045f2c7021 Mon Sep 17 00:00:00 2001 From: dotta Date: Mon, 6 Apr 2026 20:13:27 -0500 Subject: [PATCH] Move date/menu to action bar and fix activity label sizing - Agent comment header now only shows name (+ running badge) - Date, copy, thumbs up/down, and three-dots menu all in action bar - Activity event STATUS/ASSIGNEE labels changed from text-[9px] to text-xs to match value font size Co-Authored-By: Paperclip --- ui/src/components/IssueChatThread.tsx | 97 +++++++++++++-------------- 1 file changed, 48 insertions(+), 49 deletions(-) diff --git a/ui/src/components/IssueChatThread.tsx b/ui/src/components/IssueChatThread.tsx index 4ce63073..bfb86e4b 100644 --- a/ui/src/components/IssueChatThread.tsx +++ b/ui/src/components/IssueChatThread.tsx @@ -558,53 +558,14 @@ function IssueChatAssistantMessage() {
-
-
- {authorName} - {isRunning ? ( - - - Running - - ) : null} -
-
- - {message.createdAt ? formatShortDate(message.createdAt) : ""} - - - - - - - { - const text = message.content - .filter((p): p is { type: "text"; text: string } => p.type === "text") - .map((p) => p.text) - .join("\n\n"); - void navigator.clipboard.writeText(text); - }} - > - - Copy message - - {runHref ? ( - - View run - - ) : null} - - -
+
+ {authorName} + {isRunning ? ( + + + Running + + ) : null}
@@ -634,6 +595,12 @@ function IssueChatAssistantMessage() {
+ + {message.createdAt ? formatShortDate(message.createdAt) : ""} + ) : null} + + + + + + { + const text = message.content + .filter((p): p is { type: "text"; text: string } => p.type === "text") + .map((p) => p.text) + .join("\n\n"); + void navigator.clipboard.writeText(text); + }} + > + + Copy message + + {runHref ? ( + + View run + + ) : null} + +
@@ -920,7 +919,7 @@ function IssueChatSystemMessage() { {statusChange ? (
- + Status {humanizeValue(statusChange.from)} @@ -931,7 +930,7 @@ function IssueChatSystemMessage() { {assigneeChange ? (
- + Assignee