From 4dbd3a3e535abaf32f0a1a66b7136cb64c3b3d2b Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 10 Apr 2025 21:28:03 -0600 Subject: [PATCH] Fixed Logic Comparison Node Output to Strings --- Data/WebUI/src/nodes/General Purpose/Node_Logical_Operators.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/WebUI/src/nodes/General Purpose/Node_Logical_Operators.jsx b/Data/WebUI/src/nodes/General Purpose/Node_Logical_Operators.jsx index 3304603..d45dbc0 100644 --- a/Data/WebUI/src/nodes/General Purpose/Node_Logical_Operators.jsx +++ b/Data/WebUI/src/nodes/General Purpose/Node_Logical_Operators.jsx @@ -73,7 +73,7 @@ const ComparisonNode = ({ id, data }) => { "Less Than or Equal (<=)": a <= b }; - const result = resultMap[operator] ? 1 : 0; + const result = resultMap[operator] ? "1" : "0"; valueRef.current = result; setRenderValue(result);