From 74f5da0c7b4d52fa017c6a8110c81edf9132ded9 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sat, 11 Oct 2025 11:36:23 +0200 Subject: [PATCH] fix: enable scrollbar in graph analysis panel when content overflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds overflow-hidden to GraphMetrics outer container to establish proper scrolling context. Without it, the flex container doesn't constrain child height, preventing scrollbar from appearing when metrics content exceeds available space. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/components/Common/GraphMetrics.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/GraphMetrics.tsx b/src/components/Common/GraphMetrics.tsx index 3428b48..fd728c3 100644 --- a/src/components/Common/GraphMetrics.tsx +++ b/src/components/Common/GraphMetrics.tsx @@ -33,7 +33,7 @@ const GraphMetrics = ({ nodes, edges, onActorClick }: GraphMetricsProps) => { }; return ( -
+
{/* Scrollable Content */}
{/* Overview Section */}