From dfeddcf492e37110786ff40936c73010728ea625 Mon Sep 17 00:00:00 2001 From: Lukas Hirt Date: Tue, 22 Oct 2019 11:42:00 +0200 Subject: [PATCH] Remove file from progress also after download on IE11 --- src/plugins/phoenix.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/phoenix.js b/src/plugins/phoenix.js index 6ea05574c95..466cb1995eb 100644 --- a/src/plugins/phoenix.js +++ b/src/plugins/phoenix.js @@ -64,7 +64,6 @@ export default { anchor.click() document.body.removeChild(anchor) window.URL.revokeObjectURL(objectUrl) - this.removeActionFromProgress(file) // TODO: Bring back when progress bar for download is figured out // Items with small size can be fetched too fast for progress listener @@ -74,6 +73,8 @@ export default { // progress: 100 // }) } + + this.removeActionFromProgress(file) } })