Switched the CodeEditor update event from change to blur.

This commit is contained in:
Dean 2024-08-23 09:27:46 +01:00
parent 741d8d9df4
commit f44d09b344
1 changed files with 1 additions and 1 deletions

View File

@ -1073,7 +1073,7 @@
>
<CodeEditor
value={inputData[key]}
on:change={e => {
on:blur={e => {
// need to pass without the value inside
onChange({ [key]: e.detail })
inputData[key] = e.detail