From 22ccebc5e9ebdcca3d72865a399d878f0d5e206d Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 13 Mar 2024 15:43:22 +0100 Subject: [PATCH] fix(quick restart): always navigating to test page when pressing enter --- frontend/src/ts/controllers/input-controller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/ts/controllers/input-controller.ts b/frontend/src/ts/controllers/input-controller.ts index 27e89aafe..cdd5dca8c 100644 --- a/frontend/src/ts/controllers/input-controller.ts +++ b/frontend/src/ts/controllers/input-controller.ts @@ -968,7 +968,8 @@ $(document).on("keydown", async (event) => { activeElement?.tagName === "BUTTON" || activeElement?.tagName === "A" || activeElement?.classList.contains("button") || - activeElement?.classList.contains("textButton"); + activeElement?.classList.contains("textButton") || + activeElement?.tagName === "INPUT"; if (activeElementIsButton) return;