From 9abeccbe72ce9003f8b2cf2efc98936e6713075b Mon Sep 17 00:00:00 2001 From: Faton Ramadani Date: Fri, 2 Aug 2024 17:42:06 +0200 Subject: [PATCH] fix(frontend): wip --- frontend/src/lib/components/graph/FlowGraphV2.svelte | 10 ++++++++-- frontend/src/lib/components/graph/graphBuilder.ts | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) 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 } -
+