From 717698ff7cb8e512a42fcddc1de20cbdbbed3098 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 25 Aug 2026 21:40:55 +0200 Subject: [PATCH] fix: correct display message name for if else fn --- crates/taurus-core/src/runtime/functions/control.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/taurus-core/src/runtime/functions/control.rs b/crates/taurus-core/src/runtime/functions/control.rs index 1720fd9..05ab8f2 100644 --- a/crates/taurus-core/src/runtime/functions/control.rs +++ b/crates/taurus-core/src/runtime/functions/control.rs @@ -208,7 +208,7 @@ fn r#if( documentation( en_US = "Evaluates a boolean condition. If true, executes the Runnable. Otherwise executes the Else Runnable." ), - display_message(en_US = "If ${condition} is True do ${then_runnable} else ${else_runnable}"), + display_message(en_US = "If ${condition} is True do ${runnable} else ${else_runnable}"), alias(en_US = "if_else;control;std;if;else"), display_icon = "tabler:arrow-ramp-right", linked_data_type_identifiers = ["BOOLEAN", "RUNNABLE"],