diff --git a/frontend/src/ts/ui.ts b/frontend/src/ts/ui.ts index d7975a196..8abf9c5b4 100644 --- a/frontend/src/ts/ui.ts +++ b/frontend/src/ts/ui.ts @@ -100,7 +100,9 @@ const debouncedEvent = debounce(250, async () => { } } setTimeout(() => { - Caret.show(); + if ($("#wordsInput").is(":focus")) { + Caret.show(); + } }, 250); });