diff --git a/frontend/src/lib/components/graph/FlowGraphV2.svelte b/frontend/src/lib/components/graph/FlowGraphV2.svelte index 0c8feb80e2..bbc102dece 100644 --- a/frontend/src/lib/components/graph/FlowGraphV2.svelte +++ b/frontend/src/lib/components/graph/FlowGraphV2.svelte @@ -105,14 +105,20 @@ branchAllEnd: BranchAllEndNode, forLoopEnd: ForLoopEndNode, forLoopStart: ForLoopStartNode, - result: ResultNode + result: ResultNode, + whileLoopStart: ForLoopStartNode, + whileLoopEnd: ForLoopEndNode } const edgeTypes = { edge: BaseEdge } -
+