aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/GraphArea.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-02-23 19:03:03 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-02-23 19:13:23 +0100
commitcf07f20847642aec1eafe6234c2ce35264bbaabb (patch)
tree3d89fbd37db49f815eba4215dfc3d3800ff93970 /subprojects/frontend/src/graph/GraphArea.tsx
parentfeat(frontend): add top bar logo (diff)
downloadrefinery-cf07f20847642aec1eafe6234c2ce35264bbaabb.tar.gz
refinery-cf07f20847642aec1eafe6234c2ce35264bbaabb.tar.zst
refinery-cf07f20847642aec1eafe6234c2ce35264bbaabb.zip
feat(frontend): graph export formal selector
Diffstat (limited to 'subprojects/frontend/src/graph/GraphArea.tsx')
-rw-r--r--subprojects/frontend/src/graph/GraphArea.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/frontend/src/graph/GraphArea.tsx b/subprojects/frontend/src/graph/GraphArea.tsx
index 2bf40d1a..1416a259 100644
--- a/subprojects/frontend/src/graph/GraphArea.tsx
+++ b/subprojects/frontend/src/graph/GraphArea.tsx
@@ -11,7 +11,7 @@ import { useState } from 'react';
11import { useResizeDetector } from 'react-resize-detector'; 11import { useResizeDetector } from 'react-resize-detector';
12 12
13import DotGraphVisualizer from './DotGraphVisualizer'; 13import DotGraphVisualizer from './DotGraphVisualizer';
14import ExportButton from './ExportButton'; 14import ExportPanel from './ExportPanel';
15import type GraphStore from './GraphStore'; 15import type GraphStore from './GraphStore';
16import VisibilityPanel from './VisibilityPanel'; 16import VisibilityPanel from './VisibilityPanel';
17import ZoomCanvas from './ZoomCanvas'; 17import ZoomCanvas from './ZoomCanvas';
@@ -48,7 +48,7 @@ function GraphArea({ graph }: { graph: GraphStore }): JSX.Element {
48 )} 48 )}
49 </ZoomCanvas> 49 </ZoomCanvas>
50 <VisibilityPanel graph={graph} dialog={dialog} /> 50 <VisibilityPanel graph={graph} dialog={dialog} />
51 <ExportButton svgContainer={svgContainer} /> 51 <ExportPanel graph={graph} svgContainer={svgContainer} dialog={dialog} />
52 </Box> 52 </Box>
53 ); 53 );
54} 54}