Browse Source

Merge pull request #3302 from Budibase/fix/3296

Fix for automation JS scripting block
gh-pages
Michael Drury 5 years ago
committed by GitHub
parent
commit
afa4643d8a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte

3
packages/builder/src/components/automation/SetupPanel/AutomationBlockSetup.svelte

@ -234,7 +234,8 @@
<Editor
mode="javascript"
on:change={e => {
onChange(e, key)
// need to pass without the value inside
onChange({ detail: e.detail.value }, key)
inputData[key] = e.detail.value
}}
value={inputData[key]}

Loading…
Cancel
Save