- timeout changed in ContextMenu.vue

This commit is contained in:
Peter Papp
2020-12-12 10:38:25 +01:00
parent c7abcce729
commit 94088e76ec
5 changed files with 6 additions and 7 deletions

View File

@@ -450,7 +450,6 @@ export default {
}
},
downloadItem() {
// Download file
//Download no selected item
if(!this.fileInfoDetail.includes(this.item)) {
this.$downloadFile(
@@ -466,7 +465,7 @@ export default {
item.file_url,
item.name + '.' + item.mimetype
)
}, i * 100);
}, 300);
})
}
},