From eff0c506fa0b7d85bb25a8134b12545aafecd899 Mon Sep 17 00:00:00 2001 From: Dotta Date: Thu, 5 Mar 2026 17:18:01 -0600 Subject: [PATCH] fix(ui): hide assignee name in search results on mobile On small screens, the assignee Identity badge takes up valuable space in the command palette search results, truncating issue titles. Hide it below the `sm` breakpoint so more of the title is visible. Co-Authored-By: Claude Opus 4.6 --- ui/src/components/CommandPalette.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/CommandPalette.tsx b/ui/src/components/CommandPalette.tsx index d4199e7e..2ffc3bf5 100644 --- a/ui/src/components/CommandPalette.tsx +++ b/ui/src/components/CommandPalette.tsx @@ -187,7 +187,7 @@ export function CommandPalette() { {issue.title} {issue.assigneeAgentId && (() => { const name = agentName(issue.assigneeAgentId); - return name ? : null; + return name ? : null; })()} ))}