fix: stop tag graph overflow
All checks were successful
Deploy eolas-app / deploy (push) Successful in 52s
All checks were successful
Deploy eolas-app / deploy (push) Successful in 52s
This commit is contained in:
parent
777f6a0723
commit
1530a18bae
1 changed files with 9 additions and 1 deletions
|
|
@ -22,7 +22,15 @@ export default function NetworkGraph({ data }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ backgroundColor: "#fff" }}>
|
<div
|
||||||
|
style={{
|
||||||
|
width: "100%",
|
||||||
|
height: "400px",
|
||||||
|
backgroundColor: "#fff",
|
||||||
|
overflow: "hidden",
|
||||||
|
contain: "strict",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<SigmaContainer style={sigmaStyle} settings={settings}>
|
<SigmaContainer style={sigmaStyle} settings={settings}>
|
||||||
<LoadGraph data={data} />
|
<LoadGraph data={data} />
|
||||||
<GraphEvents />
|
<GraphEvents />
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue