fix: delete keyup only if no active prompt (#896)
parent
d1efc14bb9
commit
076358ab79
|
@ -176,7 +176,8 @@ export default {
|
|||
!this.isFiles ||
|
||||
this.loading ||
|
||||
!this.user.perm.delete ||
|
||||
(this.isListing && this.selectedCount === 0)) return
|
||||
(this.isListing && this.selectedCount === 0) ||
|
||||
this.$store.state.show != null) return
|
||||
|
||||
this.$store.commit('showHover', 'delete')
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue