From 5ea946303022fc4cd99b42110c6a63a2cc1c4a08 Mon Sep 17 00:00:00 2001 From: Nikhil Date: Tue, 24 Mar 2026 16:27:46 -0700 Subject: [PATCH] fix: widen scheduled task results dialog and add horizontal scroll for tables (#549) - Change dialog width from sm:max-w-2xl (672px) to sm:w-[70vw] sm:max-w-4xl so it takes 70% of viewport width, capped at 896px - Add overflow-x-auto on table wrappers so wide tables scroll horizontally instead of being clipped Co-authored-by: Claude Opus 4.6 (1M context) --- .../apps/agent/components/ai-elements/run-result-dialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/browseros-agent/apps/agent/components/ai-elements/run-result-dialog.tsx b/packages/browseros-agent/apps/agent/components/ai-elements/run-result-dialog.tsx index 6e2fddb42..9f851317d 100644 --- a/packages/browseros-agent/apps/agent/components/ai-elements/run-result-dialog.tsx +++ b/packages/browseros-agent/apps/agent/components/ai-elements/run-result-dialog.tsx @@ -66,7 +66,7 @@ export const RunResultDialog: FC = ({ return ( - + {run.status === 'completed' ? ( @@ -94,7 +94,7 @@ export const RunResultDialog: FC = ({

{run.result}

) : run.result ? ( -
+
{run.result}
) : (