From 8adcb0b0f24abc3259e5663bac1c2fff6db1ce34 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 20 May 2025 06:04:36 -0600 Subject: [PATCH] Fixed Incorrect Default Edge Width --- Data/Server/WebUI/src/Context_Menu_Sidebar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Server/WebUI/src/Context_Menu_Sidebar.jsx b/Data/Server/WebUI/src/Context_Menu_Sidebar.jsx index 0821305..3f5ca09 100644 --- a/Data/Server/WebUI/src/Context_Menu_Sidebar.jsx +++ b/Data/Server/WebUI/src/Context_Menu_Sidebar.jsx @@ -10,7 +10,7 @@ const SIDEBAR_WIDTH = 400; const DEFAULT_EDGE_STYLE = { type: "bezier", animated: true, - style: { strokeDasharray: "6 3", stroke: "#58a6ff", strokeWidth: 2 }, + style: { strokeDasharray: "6 3", stroke: "#58a6ff", strokeWidth: 1 }, label: "", labelStyle: { fill: "#fff", fontWeight: "bold" }, labelBgStyle: { fill: "#2c2c2c", fillOpacity: 0.85, rx: 16, ry: 16 },