diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 96d3ba8..8a9f39d 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -631,6 +631,7 @@ export const Graph = forwardRef(function (props: GraphProps, graphRef: any) { d3VelocityDecay: physics.velocityDecay, onNodeClick: (node: NodeObject, event: any) => { + event.preventDefault() const isDoubleClick = event.timeStamp - lastNodeClickRef.current < 400 lastNodeClickRef.current = event.timeStamp |