mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	Fix JS error when dropping a file to a editor without dropzone (#32804)
`dropzoneEl` may not exist
This commit is contained in:
		| @@ -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}) => { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user