1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +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 afa4643d8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]}