From 705ff3ff2b85346c5c4901d9656b8f1225409bdf Mon Sep 17 00:00:00 2001 From: JGerla Date: Wed, 8 Oct 2025 09:34:44 +0200 Subject: [PATCH] fix: changed edgetype to default floating was used as edgetype whilst floating wasn't available, ReactFlow automatically fell back to default. now it is changed to default in the code preventing potential unexpected behavior ref: N25B-114 --- src/visualProgrammingUI/VisProgUI.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/visualProgrammingUI/VisProgUI.tsx b/src/visualProgrammingUI/VisProgUI.tsx index a2b1e9c..c02cc55 100644 --- a/src/visualProgrammingUI/VisProgUI.tsx +++ b/src/visualProgrammingUI/VisProgUI.tsx @@ -57,7 +57,7 @@ const initialNodes = [ const initialEdges = [{id: 'start-end', source: 'start', target: 'end'}]; const defaultEdgeOptions = { - type: 'floating', + type: 'default', markerEnd: { type: MarkerType.ArrowClosed, color: '#505050',