mirror of
https://github.com/OFFIS-ESC/constellation-analyzer
synced 2026-01-26 23:43:40 +00:00
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:
parent
869e4d5f68
commit
74f5da0c7b
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ const GraphMetrics = ({ nodes, edges, onActorClick }: GraphMetricsProps) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<div className="h-full flex flex-col">
|
||||
<div className="h-full flex flex-col overflow-hidden">
|
||||
{/* Scrollable Content */}
|
||||
<div className="flex-1 overflow-y-auto overflow-x-hidden px-3 py-3 space-y-4">
|
||||
{/* Overview Section */}
|
||||
|
|
|
|||
Loading…
Reference in a new issue