From 702f67cb6d5916c5b04bd50da1486a25f96f73ea Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Sat, 6 Feb 2021 19:04:25 +0000 Subject: [PATCH] fix bindings --- .../automation/SetupPanel/GenericBindingPopover.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte b/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte index 5b48c7f344..3ee6c0fd31 100644 --- a/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte +++ b/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte @@ -46,7 +46,7 @@ } function checkValid() { - const runtimeValue = readableToRuntimeBinding(bindings, valueToParse) + const runtimeValue = readableToRuntimeBinding(bindings, value) validity = isValid(runtimeValue) }