fix: stop tag graph overflow
All checks were successful
Deploy eolas-app / deploy (push) Successful in 52s

This commit is contained in:
Thomas Bishop 2025-12-05 18:48:23 +00:00
parent 777f6a0723
commit 1530a18bae

View file

@ -22,7 +22,15 @@ export default function NetworkGraph({ data }) {
}
return (
<div style={{ backgroundColor: "#fff" }}>
<div
style={{
width: "100%",
height: "400px",
backgroundColor: "#fff",
overflow: "hidden",
contain: "strict",
}}
>
<SigmaContainer style={sigmaStyle} settings={settings}>
<LoadGraph data={data} />
<GraphEvents />