fix: enable scrollbar in graph analysis panel when content overflows

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 <noreply@anthropic.com>
This commit is contained in:
Jan-Henrik Bruhn 2025-10-11 11:36:23 +02:00
parent 869e4d5f68
commit 74f5da0c7b

View file

@ -33,7 +33,7 @@ const GraphMetrics = ({ nodes, edges, onActorClick }: GraphMetricsProps) => {
}; };
return ( return (
<div className="h-full flex flex-col"> <div className="h-full flex flex-col overflow-hidden">
{/* Scrollable Content */} {/* Scrollable Content */}
<div className="flex-1 overflow-y-auto overflow-x-hidden px-3 py-3 space-y-4"> <div className="flex-1 overflow-y-auto overflow-x-hidden px-3 py-3 space-y-4">
{/* Overview Section */} {/* Overview Section */}