diff --git a/ui/src/components/CommentThread.tsx b/ui/src/components/CommentThread.tsx index 4c5f390..fe463b7 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 c614942..b9304ad 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()}