From 6622b198d522f79a0b8088908255f7f0443eea64 Mon Sep 17 00:00:00 2001 From: Tyler Cooper Date: Mon, 25 Aug 2025 15:27:09 -0500 Subject: [PATCH] compare text changes --- app/blocks/text/compare.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/app/blocks/text/compare.js b/app/blocks/text/compare.js index 374c43e..96f3ba0 100644 --- a/app/blocks/text/compare.js +++ b/app/blocks/text/compare.js @@ -173,18 +173,18 @@ This block compares TEXT, not numbers! "10" vs "9" gives unexpected results - **IF/Then** - Use comparison results to control flow`, connections: { mode: "value", - output: ["expression", "boolean"], - inputs: { - A: { - description: "Left text value to compare", - types: ["expression", "string"], - shadow: "io_text" - }, - B: { - description: "Right text value to compare", - types: ["expression", "string"], - shadow: "io_text" - } + output: ["expression", "boolean"] + }, + inputs: { + A: { + description: "Left text value to compare", + types: ["expression", "string"], + shadow: "io_text" + }, + B: { + description: "Right text value to compare", + types: ["expression", "string"], + shadow: "io_text" } }, template: "%A %OP %B",