From 7bfce053a9b7f0732aab32b4e055a6d802468c88 Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Sat, 6 Jun 2026 17:41:36 -0700 Subject: [PATCH] fix(ui): make workflow runs page fill full width (#29868) The Workflow Runs page rendered its table at roughly a quarter of the available width. Its root container is a flex child of the dashboard content row but set only padding, min-height and background, so with no width it shrank to the table's natural content size. Sibling pages (logs, memory) fill the area with a full-width root; mirror that by setting width 100% on the container. Fixes LIT-3636 --- ui/litellm-dashboard/src/components/workflow_runs/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/litellm-dashboard/src/components/workflow_runs/index.tsx b/ui/litellm-dashboard/src/components/workflow_runs/index.tsx index b9467c5604..2aecbece2e 100644 --- a/ui/litellm-dashboard/src/components/workflow_runs/index.tsx +++ b/ui/litellm-dashboard/src/components/workflow_runs/index.tsx @@ -587,6 +587,7 @@ const WorkflowRuns: React.FC = ({ accessToken }) => { return (