|
@@ -75,6 +75,7 @@ module.exports = class Dashboard extends Plugin {
|
|
defaultTabIcon: defaultTabIcon,
|
|
defaultTabIcon: defaultTabIcon,
|
|
showProgressDetails: false,
|
|
showProgressDetails: false,
|
|
hideUploadButton: false,
|
|
hideUploadButton: false,
|
|
|
|
+ hideProgressAfterFinish: false,
|
|
note: null,
|
|
note: null,
|
|
closeModalOnClickOutside: false,
|
|
closeModalOnClickOutside: false,
|
|
locale: defaultLocale,
|
|
locale: defaultLocale,
|
|
@@ -497,7 +498,8 @@ module.exports = class Dashboard extends Plugin {
|
|
if (!this.opts.disableStatusBar) {
|
|
if (!this.opts.disableStatusBar) {
|
|
this.uppy.use(StatusBar, {
|
|
this.uppy.use(StatusBar, {
|
|
target: this,
|
|
target: this,
|
|
- hideUploadButton: this.opts.hideUploadButton
|
|
|
|
|
|
+ hideUploadButton: this.opts.hideUploadButton,
|
|
|
|
+ hideAfterFinish: this.opts.hideProgressAfterFinish
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|