From 9a1b39e429e777e0aec9d08c676ac5af0cc719bc Mon Sep 17 00:00:00 2001 From: Laurynas Gadliauskas Date: Tue, 17 Jan 2023 17:08:04 +0200 Subject: [PATCH] feat: remove ctrl+f override --- frontend/src/views/files/Listing.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/views/files/Listing.vue b/frontend/src/views/files/Listing.vue index 4c777115..61bc600a 100644 --- a/frontend/src/views/files/Listing.vue +++ b/frontend/src/views/files/Listing.vue @@ -518,10 +518,6 @@ export default { let key = String.fromCharCode(event.which).toLowerCase(); switch (key) { - case "f": - event.preventDefault(); - this.$store.commit("showHover", "search"); - break; case "c": case "x": this.copyCut(event, key);