From 076358ab79c2166388627704d36a69d39d75ac43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Thu, 24 Oct 2019 13:10:34 +0200 Subject: [PATCH] fix: delete keyup only if no active prompt (#896) --- frontend/src/views/Files.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/Files.vue b/frontend/src/views/Files.vue index afd04e41..e937cd83 100644 --- a/frontend/src/views/Files.vue +++ b/frontend/src/views/Files.vue @@ -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') }