Fixing issue with automation JS scripting not functioning, due to an object being passed in as code parameter.
This commit is contained in:
parent
951cfb5ba9
commit
014b277c55
|
@ -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…
Reference in New Issue