From ef60ea04466b9967165a3c732cbf95075a5e910b Mon Sep 17 00:00:00 2001 From: dotta Date: Wed, 18 Mar 2026 15:29:19 -0500 Subject: [PATCH] Fix org chart canvas overflowing viewport by using h-full instead of calc The previous h-[calc(100dvh-6rem)] underestimated the vertical overhead (breadcrumb, padding, worktree banner, button bar). Using h-full lets the flex layout propagate the correct available height from
. Co-Authored-By: Paperclip --- ui/src/pages/OrgChart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/OrgChart.tsx b/ui/src/pages/OrgChart.tsx index 9c12f818..45993717 100644 --- a/ui/src/pages/OrgChart.tsx +++ b/ui/src/pages/OrgChart.tsx @@ -268,7 +268,7 @@ export function OrgChart() { } return ( -
+