From 97e20c107ffe3fb0a9229d58ac67886e7db2e0ef Mon Sep 17 00:00:00 2001 From: MI Date: Mon, 1 Jul 2024 10:19:23 +0800 Subject: [PATCH] Update index.tsx function name (#471) change handleExcute to handleExecute --- apps/basic/src/pages/dag/toolbar/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/basic/src/pages/dag/toolbar/index.tsx b/apps/basic/src/pages/dag/toolbar/index.tsx index 404c770e..b6c9a62e 100644 --- a/apps/basic/src/pages/dag/toolbar/index.tsx +++ b/apps/basic/src/pages/dag/toolbar/index.tsx @@ -45,7 +45,7 @@ const Toolbar = () => { } }); - const handleExcute = () => { + const handleExecute = () => { if (graph) { nodes.forEach((node: Node | NodeOptions, index: number) => { const edges = graph.getOutgoingEdges(node as Node);