Skip to content

Commit

Permalink
fix logic to display paste context menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
kevodwyer committed Jul 21, 2023
1 parent 422faff commit 3404e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Drive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2741,7 +2741,7 @@ module.exports = {
openMenu(file) {
// console.log(file)
if (this.selectedFiles.length > 1 && this.isPasteToFolderMultiSelectAvailable(file)) {
if (this.isPasteToFolderMultiSelectAvailable(file)) {
this.multiSelectTargetFolder = file;
this.viewPasteMenu = true
} else {
Expand Down

0 comments on commit 3404e3e

Please sign in to comment.