Fix JS error when dropping a file to a editor without dropzone (#32804)
`dropzoneEl` may not exist
This commit is contained in:
parent
dfd7594499
commit
1e751d81b3
1 changed files with 1 additions and 0 deletions
|
@ -178,6 +178,7 @@ export function initTextareaEvents(textarea, dropzoneEl) {
|
|||
});
|
||||
textarea.addEventListener('drop', (e) => {
|
||||
if (!e.dataTransfer.files.length) return;
|
||||
if (!dropzoneEl) return;
|
||||
handleUploadFiles(new TextareaEditor(textarea), dropzoneEl, e.dataTransfer.files, e);
|
||||
});
|
||||
dropzoneEl?.dropzone.on(DropzoneCustomEventRemovedFile, ({fileUuid}) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue