From d8a734268670c40d1f6a20d49baff6ebe866e4dd Mon Sep 17 00:00:00 2001 From: dotta Date: Mon, 6 Apr 2026 17:36:28 -0500 Subject: [PATCH] Fix avatar positioning and activity line alignment in chat - Move "You" avatar outside content column using -right-8 negative positioning instead of right-0 inside pr-8 padding - Remove pr-8 padding from user message container so bubble touches the column edge - Align activity event and run timeline avatars/gaps with chat messages (sm size + gap-2.5 instead of xs + gap-2) Co-Authored-By: Paperclip --- ui/src/components/IssueChatThread.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/src/components/IssueChatThread.tsx b/ui/src/components/IssueChatThread.tsx index bdbab9a0..16861b4a 100644 --- a/ui/src/components/IssueChatThread.tsx +++ b/ui/src/components/IssueChatThread.tsx @@ -360,7 +360,7 @@ function IssueChatUserMessage() { return ( -
+
- + You
@@ -894,12 +894,12 @@ function IssueChatSystemMessage() { return ( -
- +
+ {agentIcon ? ( - + ) : ( - {initialsForName(actorName)} + {initialsForName(actorName)} )}
@@ -915,12 +915,12 @@ function IssueChatSystemMessage() { if (custom.kind === "run" && runId && runAgentId && displayedRunAgentName && runStatus) { return ( -
- +
+ {runAgentIcon ? ( - + ) : ( - {initialsForName(displayedRunAgentName)} + {initialsForName(displayedRunAgentName)} )}