Skip to content

Commit 9051dc2

Browse files
committed
fix: made sure inserting spanish characters does not cause an error PD-3300
1 parent 6854b20 commit 9051dc2

File tree

1 file changed

+1
-1
lines changed
  • packages/pie-toolbox/src/code/editable-html/plugins/characters

1 file changed

+1
-1
lines changed

packages/pie-toolbox/src/code/editable-html/plugins/characters/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const insertDialog = ({ editor, callback, opts }) => {
128128

129129
const handleChange = (val) => {
130130
if (typeof val === 'string') {
131-
callback(val, true);
131+
callback(val);
132132
}
133133
};
134134

0 commit comments

Comments
 (0)