diff --git a/ui/src/components/Identity.tsx b/ui/src/components/Identity.tsx index 79ba86de..6f9af851 100644 --- a/ui/src/components/Identity.tsx +++ b/ui/src/components/Identity.tsx @@ -29,7 +29,7 @@ export function Identity({ name, avatarUrl, initials, size = "default", classNam return ( - + {avatarUrl && } {displayInitials} diff --git a/ui/src/pages/Dashboard.tsx b/ui/src/pages/Dashboard.tsx index 5f74803b..40de9753 100644 --- a/ui/src/pages/Dashboard.tsx +++ b/ui/src/pages/Dashboard.tsx @@ -266,23 +266,25 @@ export function Dashboard() { className="px-4 py-2 text-sm cursor-pointer hover:bg-accent/50 transition-colors" onClick={() => navigate(`/issues/${issue.id}`)} > -
-
- - +
+
+
+ + +
+

+ {issue.title} + {issue.assigneeAgentId && (() => { + const name = agentName(issue.assigneeAgentId); + return name + ? + : null; + })()} +

-

- {issue.title} - {issue.assigneeAgentId && (() => { - const name = agentName(issue.assigneeAgentId); - return name - ? - : null; - })()} - - {timeAgo(issue.updatedAt)} - -

+ + {timeAgo(issue.updatedAt)} +
))}