From fa17e5c168e1f5f409624b1fcf8fb10eb9c0cad5 Mon Sep 17 00:00:00 2001 From: Bohan Jiang <52446949+Bohan-J@users.noreply.github.com> Date: Wed, 15 Jul 2026 18:41:16 +0800 Subject: [PATCH] fix(views): stop server version from stretching the help menu (#5472) Cap the Help menu width (max-w-56) and let the server version label wrap (break-words) so a long version string no longer widens the whole popup. The menu still keeps its min-w-40 floor when no version is shown. MUL-4828 Co-authored-by: Bohan-J Co-authored-by: multica-agent --- packages/views/layout/help-launcher.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/views/layout/help-launcher.tsx b/packages/views/layout/help-launcher.tsx index 762700405..e45479f82 100644 --- a/packages/views/layout/help-launcher.tsx +++ b/packages/views/layout/help-launcher.tsx @@ -34,7 +34,7 @@ export function HelpLauncher() { align="end" side="top" sideOffset={8} - className="min-w-40" + className="min-w-40 max-w-56" > - + {t(($) => $.help.server_version, { version: serverVersion })}