]> source.dussan.org Git - gitea.git/commitdiff
Fix Dropzone following #15315 (#15353)
authorzeripath <art27@cantab.net>
Fri, 9 Apr 2021 02:32:30 +0000 (03:32 +0100)
committerGitHub <noreply@github.com>
Fri, 9 Apr 2021 02:32:30 +0000 (10:32 +0800)
* Fix Dropzone following #15315

#15315 appears to have caused a change in the way Dropzone is imported - and it
now produces a module rather than the constructor.

This PR rather hackily just adds another Dropzone call to the result.

Signed-off-by: Andrew Thornton <art27@cantab.net>
* use destructured export

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: 6543 <6543@obermui.de>
web_src/js/features/dropzone.js

index 428f1d677ab3a9d309515e8e41560c5f930502e9..6a4f7e17e49ab71580117743c10df050d927cf97 100644 (file)
@@ -1,5 +1,5 @@
 export default async function createDropzone(el, opts) {
-  const [{default: Dropzone}] = await Promise.all([
+  const [{Dropzone}] = await Promise.all([
     import(/* webpackChunkName: "dropzone" */'dropzone'),
     import(/* webpackChunkName: "dropzone" */'dropzone/dist/dropzone.css'),
   ]);