|
@@ -97,6 +97,8 @@ module.exports = class Dashboard extends Plugin {
|
|
|
showLinkToFileUploadResult: true,
|
|
|
showProgressDetails: false,
|
|
|
hideUploadButton: false,
|
|
|
+ hideRetryButton: false,
|
|
|
+ hideCancelButton: false,
|
|
|
hideProgressAfterFinish: false,
|
|
|
note: null,
|
|
|
closeModalOnClickOutside: false,
|
|
@@ -458,6 +460,8 @@ module.exports = class Dashboard extends Plugin {
|
|
|
progressindicators: progressindicators,
|
|
|
autoProceed: this.uppy.opts.autoProceed,
|
|
|
hideUploadButton: this.opts.hideUploadButton,
|
|
|
+ hideRetryButton: this.opts.hideRetryButton,
|
|
|
+ hideCancelButton: this.opts.hideCancelButton,
|
|
|
id: this.id,
|
|
|
closeModal: this.requestCloseModal,
|
|
|
handleClickOutside: this.handleClickOutside,
|
|
@@ -529,6 +533,8 @@ module.exports = class Dashboard extends Plugin {
|
|
|
id: `${this.id}:StatusBar`,
|
|
|
target: this,
|
|
|
hideUploadButton: this.opts.hideUploadButton,
|
|
|
+ hideRetryButton: this.opts.hideRetryButton,
|
|
|
+ hideCancelButton: this.opts.hideCancelButton,
|
|
|
showProgressDetails: this.opts.showProgressDetails,
|
|
|
hideAfterFinish: this.opts.hideProgressAfterFinish,
|
|
|
locale: this.opts.locale
|