aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/graph/DotGraphVisualizer.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-22 03:19:29 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-22 03:19:29 +0100
commitddd0e0746c30ccf0bfd9b32b6225cd2ce3eb240c (patch)
tree34806446ca566bebb6524a95b1337fd1280fcf13 /subprojects/frontend/src/graph/DotGraphVisualizer.tsx
parentrefactor(web): improve web app styling (diff)
downloadrefinery-ddd0e0746c30ccf0bfd9b32b6225cd2ce3eb240c.tar.gz
refinery-ddd0e0746c30ccf0bfd9b32b6225cd2ce3eb240c.tar.zst
refinery-ddd0e0746c30ccf0bfd9b32b6225cd2ce3eb240c.zip
feat: custom identifier coloring
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 = {