aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/DotGraphVisualizer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/graph/DotGraphVisualizer.tsx')
-rw-r--r--subprojects/frontend/src/graph/DotGraphVisualizer.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/subprojects/frontend/src/graph/DotGraphVisualizer.tsx b/subprojects/frontend/src/graph/DotGraphVisualizer.tsx
index cc8b5116..0980ea20 100644
--- a/subprojects/frontend/src/graph/DotGraphVisualizer.tsx
+++ b/subprojects/frontend/src/graph/DotGraphVisualizer.tsx
@@ -154,7 +154,13 @@ function DotGraphVisualizer({
154 ], 154 ],
155 ); 155 );
156 156
157 return <GraphTheme ref={setElement} colorNodes={graph.colorNodes} />; 157 return (
158 <GraphTheme
159 ref={setElement}
160 colorNodes={graph.colorNodes}
161 hexTypeHashes={graph.hexTypeHashes}
162 />
163 );
158} 164}
159 165
160DotGraphVisualizer.defaultProps = { 166DotGraphVisualizer.defaultProps = {