diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 0caaacc0c..a79169141 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -63,7 +63,7 @@ export default { }, created() { window.addEventListener("keyup", e => { - if (e.key == "/") { + if (e.key == "/" && !document.activeElement.id.startsWith('input') ) { this.search = !this.search; } });