Merge pull request #45984 from nextcloud/artonge/fix/click_while_renaming

Don't trigger action when renaming
This commit is contained in:
Louis 2024-06-20 17:49:51 +02:00 committed by GitHub
commit 9c4b959690
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View File

@ -144,6 +144,10 @@ export default defineComponent({
this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null
},
},
isRenaming() {
return this.renamingStore.renamingNode === this.source
},
},
watch: {
@ -208,6 +212,11 @@ export default defineComponent({
},
execDefaultAction(event) {
// Ignore click if we are renaming
if (this.isRenaming) {
return
}
// Ignore right click.
if (event.button > 1) {
return

4
dist/files-main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long