From 361a51dfc8f5c66d212e82da33b833bb9148ab9e Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Wed, 5 Feb 2025 19:28:49 -0800 Subject: [PATCH] Pushed state-workable if block --- blocks/blocks/condition.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/blocks/blocks/condition.ts b/blocks/blocks/condition.ts index 78f4215ab..ef8e4846d 100644 --- a/blocks/blocks/condition.ts +++ b/blocks/blocks/condition.ts @@ -29,6 +29,21 @@ export const ConditionBlock: BlockConfig = { subBlocks: [ { id: 'if', + title: 'if', + type: 'code', + layout: 'full', + outputHandle: true, + }, + { + id: 'else-if', + title: 'else if', + type: 'code', + layout: 'full', + outputHandle: true, + }, + { + id: 'else', + title: 'else', type: 'code', layout: 'full', outputHandle: true,