From 4f810f2cf451432f35c7e50be18061550544a9e4 Mon Sep 17 00:00:00 2001 From: Dean Date: Thu, 30 Jan 2025 15:16:40 +0000 Subject: [PATCH] Fixed code editor placeholder to the js copy --- .../automation/SetupPanel/AutomationBlockSetup.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte b/packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte index 12653a487a..5e6fdeb47f 100644 --- a/packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte +++ b/packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte @@ -930,9 +930,7 @@ context={$memoContext} allowHBS={false} allowJS - placeholder={codeMode === EditorModes.Handlebars - ? "Add bindings by typing {{" - : null} + placeholder={"Add bindings by typing $"} on:blur={e => onChange({ [key]: encodeJSBinding(e.detail) })} />