1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

Merge pull request #3302 from Budibase/fix/3296

Fix for automation JS scripting block
This commit is contained in:
Michael Drury 2021-11-10 09:42:03 +00:00 committed by GitHub
commit 7bbe80bf35

View file

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