fix: the position of tinymce upload image is wrong (#1015)
This commit is contained in:
parent
be2d11d5d3
commit
2fd0fd281e
|
|
@ -278,8 +278,9 @@
|
|||
if (!editor) {
|
||||
return;
|
||||
}
|
||||
editor.execCommand('mceInsertContent', false, getUploadingImgName(name));
|
||||
const content = editor?.getContent() ?? '';
|
||||
setValue(editor, `${content}\n${getUploadingImgName(name)}`);
|
||||
setValue(editor, content);
|
||||
}
|
||||
|
||||
function handleDone(name: string, url: string) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue