mirror of https://github.com/go-gitea/gitea.git
Fix JS error with disabled attachment and easymde (#31511)
Not sure if this is a regression from https://github.com/go-gitea/gitea/pull/30513, but when attachments are disabled, `this.dropzone` is null and the code had failed in `initEasyMDEPaste` trying to access `dropzoneEl.dropzone`.
This commit is contained in:
parent
d655ff18b3
commit
62b3738968
|
@ -264,7 +264,9 @@ class ComboMarkdownEditor {
|
|||
});
|
||||
this.applyEditorHeights(this.container.querySelector('.CodeMirror-scroll'), this.options.editorHeights);
|
||||
await attachTribute(this.easyMDE.codemirror.getInputField(), {mentions: true, emoji: true});
|
||||
if (this.dropzone) {
|
||||
initEasyMDEPaste(this.easyMDE, this.dropzone);
|
||||
}
|
||||
hideElem(this.textareaMarkdownToolbar);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue