diff --git a/ui/src/components/CommentThread.tsx b/ui/src/components/CommentThread.tsx index 4c5f3900..fe463b7d 100644 --- a/ui/src/components/CommentThread.tsx +++ b/ui/src/components/CommentThread.tsx @@ -70,14 +70,16 @@ export function CommentThread({ comments, onAdd, issueStatus, agentMap }: Commen {sorted.map((comment) => (
- + {comment.authorAgentId ? ( + + + + ) : ( + + )} {formatDateTime(comment.createdAt)} diff --git a/ui/src/pages/ApprovalDetail.tsx b/ui/src/pages/ApprovalDetail.tsx index c6149429..b9304add 100644 --- a/ui/src/pages/ApprovalDetail.tsx +++ b/ui/src/pages/ApprovalDetail.tsx @@ -315,14 +315,16 @@ export function ApprovalDetail() { {(comments ?? []).map((comment: ApprovalComment) => (
- + {comment.authorAgentId ? ( + + + + ) : ( + + )} {new Date(comment.createdAt).toLocaleString()}