From f99f174e2dd186373e0b981ba5172a0dc75e3f5d Mon Sep 17 00:00:00 2001 From: Chris Schneider Date: Fri, 6 Mar 2026 17:16:39 +0000 Subject: [PATCH] Show issue creator in properties sidebar --- ui/src/components/IssueProperties.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/ui/src/components/IssueProperties.tsx b/ui/src/components/IssueProperties.tsx index ff7229dc..87846ecd 100644 --- a/ui/src/components/IssueProperties.tsx +++ b/ui/src/components/IssueProperties.tsx @@ -525,6 +525,23 @@ export function IssueProperties({ issue, onUpdate, inline }: IssuePropertiesProp
+ {(issue.createdByAgentId || issue.createdByUserId) && ( + + {issue.createdByAgentId ? ( + + + + ) : ( + <> + + {creatorUserLabel ?? "User"} + + )} + + )} {issue.startedAt && ( {formatDate(issue.startedAt)}