fix: download current dir on file listing

This commit is contained in:
Ramires Viana 2021-03-12 15:28:49 +00:00
parent 7955e0720b
commit 488d98045e

View File

@ -588,8 +588,12 @@ export default {
let files = [] let files = []
for (let i of this.selected) { if (this.selectedCount > 0) {
files.push(this.req.items[i].url) for (let i of this.selected) {
files.push(this.req.items[i].url)
}
} else {
files.push(this.$route.path)
} }
api.download(format, ...files) api.download(format, ...files)