fix(quick restart): always navigating to test page when pressing enter

This commit is contained in:
Miodec 2024-03-13 15:43:22 +01:00
parent 14280df96f
commit 22ccebc5e9

View file

@ -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;