From 72db576edced5a4f7c3f120fabdbc2d569f46ee3 Mon Sep 17 00:00:00 2001 From: kaubu <29447633+kaubu@users.noreply.github.com> Date: Sun, 17 Dec 2023 10:39:26 +0000 Subject: [PATCH] Active fix? --- src/layouts/default/AppBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/default/AppBar.vue b/src/layouts/default/AppBar.vue index 4a9571d..ae2752e 100644 --- a/src/layouts/default/AppBar.vue +++ b/src/layouts/default/AppBar.vue @@ -54,7 +54,7 @@ onMounted(() => { if (e.code === "KeyS" && (document.activeElement !== searchBar) && (document.activeElement !== wordlistSearch)) { - // console.log(`Focusing search! activeElement = ${document.activeElement}`); + console.log(`Focusing search! activeElement = ${document.activeElement}`); searchBar?.focus(); // Unfocus the search bar if escape is pressed } else if (e.code === "Escape" && (document.activeElement === searchBar)) {