We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79d2cf2 commit 8ecaadfCopy full SHA for 8ecaadf
admin-imgtc.html
@@ -612,12 +612,9 @@
612
this.selectedFiles.forEach((file, index) => {
613
setTimeout(() => {
614
const link = document.createElement('a');
615
- link.style.display = 'none';
616
link.href = `/file/${file.name}`;
617
link.download = file.metadata.fileName || file.name;
618
- document.body.appendChild(link);
619
link.click();
620
- document.body.removeChild(link);
621
}, index * 800);
622
});
623
this.selectedFiles = [];
@@ -653,6 +650,7 @@
653
650
switch (command) {
654
651
case 'copy': this.handleBatchCopy(); break;
655
652
case 'delete': this.handleBatchDelete(); break;
+ case 'download': this.handleBatchDownload(); break;
656
case 'block': this.handleBatchBlockOrUnblock('Block'); break;
657
case 'unblock': this.handleBatchBlockOrUnblock('White'); break;
658
}
0 commit comments