diff --git a/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte b/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte index 7c65ea0fed..7acaa340b6 100644 --- a/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte +++ b/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte @@ -67,7 +67,7 @@ { - if (!$propPickerConfig) { + if (!notSelectable && !$propPickerConfig) { sendUserToast('Set cursor within an input or click on the plug first', true) } dispatch('select', detail) @@ -83,7 +83,7 @@ {pickableProperties} {notSelectable} on:select={({ detail }) => { - if (!$propPickerConfig) { + if (!notSelectable && !$propPickerConfig) { sendUserToast('Set cursor within an input or click on the plug first', true) } dispatch('select', detail)