From b7249768545ac2b745c53fd993d07097d60cc0b1 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 6 May 2025 06:03:53 -0600 Subject: [PATCH] Added "Smoothstep" Edge Style --- Data/Server/WebUI/src/Flow_Editor.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Data/Server/WebUI/src/Flow_Editor.jsx b/Data/Server/WebUI/src/Flow_Editor.jsx index cd6b71e..813f75b 100644 --- a/Data/Server/WebUI/src/Flow_Editor.jsx +++ b/Data/Server/WebUI/src/Flow_Editor.jsx @@ -57,7 +57,8 @@ export default function FlowEditor({ const edgeStyles = { step: "step", curved: "bezier", - straight: "straight" + straight: "straight", + smoothstep: "smoothstep" }; const animationStyles = { @@ -416,6 +417,7 @@ export default function FlowEditor({ changeEdgeType("step")}>Step changeEdgeType("curved")}>Curved changeEdgeType("straight")}>Straight + changeEdgeType("smoothstep")}>Smoothstep