From 01ea9021560c4bf67e7eea6d2be9f8192951d98b Mon Sep 17 00:00:00 2001 From: Chaim Date: Sun, 3 May 2026 18:21:48 +0000 Subject: [PATCH] fix(ui): stack agent dropdown items vertically to stop multi-line wrapping MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous layout used `justify-between` with the board name and the prefix·hint hint on the same row. With Hebrew labels + the long hint "תיקי 8xxx / 9xxx" the row overflowed the 220px content and wrapped the hint into 2-3 lines, breaking visual alignment. Stacks each item now: bold board name on top, dim prefix·hint underneath. Adds whitespace-nowrap to both lines and bumps min-width to 240px so the content drives the dropdown width instead of fighting it. Co-Authored-By: Claude Opus 4.7 (1M context) --- web-ui/src/components/app-shell.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web-ui/src/components/app-shell.tsx b/web-ui/src/components/app-shell.tsx index a416df8..76354e7 100644 --- a/web-ui/src/components/app-shell.tsx +++ b/web-ui/src/components/app-shell.tsx @@ -119,7 +119,7 @@ export function AppShell({ children }: { children: ReactNode }) {