diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index e53ba03..4878b0c 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1219,7 +1219,9 @@ export const Graph = function (props: GraphProps) { }, nodeCanvasObject: (node, ctx, globalScale) => { drawLabels({ + nodeRel: visuals.nodeRel, filteredLinksByNodeId: filteredLinksByNodeIdRef.current, + lastHoverNode: lastHoverNode.current, ...{ node, ctx, @@ -1231,6 +1233,7 @@ export const Graph = function (props: GraphProps) { nodeSize, labelTextColor, labelBackgroundColor, + hoverNode, }, }) }, |