Skip to content

Commit

Permalink
fix(svelte): fix ListInput as TextEditor value handling
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed May 31, 2022
1 parent c27ddbd commit 03c3644
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 @@ -267,7 +267,7 @@
if (type === 'texteditor') {
emit('textEditorChange', [args[0]]);
value = args[1];
value = args[0];
}
}
Expand Down

0 comments on commit 03c3644

Please sign in to comment.