From a02b2972ebde2a58806ad1377bad46e748b63166 Mon Sep 17 00:00:00 2001 From: contributor Date: Thu, 19 Jun 2025 22:57:57 +0300 Subject: [PATCH] fix: search uses ctrl+shift+f instead of hijacking browser's ctrl+f (#4638) --- frontend/src/views/files/FileListing.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/files/FileListing.vue b/frontend/src/views/files/FileListing.vue index 8fa48f72..60d74169 100644 --- a/frontend/src/views/files/FileListing.vue +++ b/frontend/src/views/files/FileListing.vue @@ -511,8 +511,11 @@ const keyEvent = (event: KeyboardEvent) => { switch (event.key) { case "f": - event.preventDefault(); - layoutStore.showHover("search"); + case "F": + if (event.shiftKey) { + event.preventDefault(); + layoutStore.showHover("search"); + } break; case "c": case "x":