Skip to content

Commit

Permalink
fix(svelte): fix value of textEditorChange event in ListInput
Browse files Browse the repository at this point in the history
fixes #3879
  • Loading branch information
nolimits4web committed Apr 30, 2021
1 parent 4ca7020 commit 4e1d26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/svelte/components/list-input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
emit('change', [...args]);
if (type === 'texteditor') {
emit('textEditorChange', [args[1]]);
emit('textEditorChange', [args[0]]);
value = args[1];
}
}
Expand Down

0 comments on commit 4e1d26f

Please sign in to comment.