diff --git a/frontend/src/ts/controllers/input-controller.ts b/frontend/src/ts/controllers/input-controller.ts index cdd5dca8c..54b606e9c 100644 --- a/frontend/src/ts/controllers/input-controller.ts +++ b/frontend/src/ts/controllers/input-controller.ts @@ -969,7 +969,8 @@ $(document).on("keydown", async (event) => { activeElement?.tagName === "A" || activeElement?.classList.contains("button") || activeElement?.classList.contains("textButton") || - activeElement?.tagName === "INPUT"; + (activeElement?.tagName === "INPUT" && + activeElement?.id !== "wordsInput"); if (activeElementIsButton) return;