mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-27 06:58:28 -06:00
Fixed Logic Comparison Node Output to Strings
This commit is contained in:
@ -73,7 +73,7 @@ const ComparisonNode = ({ id, data }) => {
|
|||||||
"Less Than or Equal (<=)": a <= b
|
"Less Than or Equal (<=)": a <= b
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = resultMap[operator] ? 1 : 0;
|
const result = resultMap[operator] ? "1" : "0";
|
||||||
|
|
||||||
valueRef.current = result;
|
valueRef.current = result;
|
||||||
setRenderValue(result);
|
setRenderValue(result);
|
||||||
|
Reference in New Issue
Block a user