summaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/GraphArea.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/graph/GraphArea.tsx')
-rw-r--r--subprojects/frontend/src/graph/GraphArea.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/subprojects/frontend/src/graph/GraphArea.tsx b/subprojects/frontend/src/graph/GraphArea.tsx
index b5d93aef..70ae3bc5 100644
--- a/subprojects/frontend/src/graph/GraphArea.tsx
+++ b/subprojects/frontend/src/graph/GraphArea.tsx
@@ -12,6 +12,7 @@ import { useResizeDetector } from 'react-resize-detector';
12 12
13import DotGraphVisualizer from './DotGraphVisualizer'; 13import DotGraphVisualizer from './DotGraphVisualizer';
14import type GraphStore from './GraphStore'; 14import type GraphStore from './GraphStore';
15import SVGIcons from './SVGIcons';
15import VisibilityPanel from './VisibilityPanel'; 16import VisibilityPanel from './VisibilityPanel';
16import ZoomCanvas from './ZoomCanvas'; 17import ZoomCanvas from './ZoomCanvas';
17import ExportPanel from './export/ExportPanel'; 18import ExportPanel from './export/ExportPanel';
@@ -38,6 +39,7 @@ function GraphArea({ graph }: { graph: GraphStore }): JSX.Element {
38 position="relative" 39 position="relative"
39 ref={ref} 40 ref={ref}
40 > 41 >
42 <SVGIcons />
41 <ZoomCanvas> 43 <ZoomCanvas>
42 {(fitZoom) => ( 44 {(fitZoom) => (
43 <DotGraphVisualizer 45 <DotGraphVisualizer