Poprawki dostępności searchboxów

This commit is contained in:
2022-09-25 23:30:37 +02:00
parent 053e9d2b6a
commit 42bb056e66
4 changed files with 26 additions and 21 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ export default defineComponent({
onKeyDownFunction() {},
handleKeyDown(e: KeyboardEvent) {
if (e.key.toLowerCase() == 'f' && !this.preventKeyDown) this.onKeyDownFunction();
if (e.key.toLowerCase() == 'f' && !this.preventKeyDown && !e.ctrlKey && !e.altKey) this.onKeyDownFunction();
},
},
});