From 1f77540dbb3d8874dc2f8da6a690685c21cd1715 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 7 Jan 2026 19:32:37 +0200 Subject: [PATCH] fix(text): Title is not selected when creating a note via the launcher (#8292) --- apps/client/src/widgets/type_widgets/text/EditableText.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/text/EditableText.tsx b/apps/client/src/widgets/type_widgets/text/EditableText.tsx index e5ea9c498..fba7d6966 100644 --- a/apps/client/src/widgets/type_widgets/text/EditableText.tsx +++ b/apps/client/src/widgets/type_widgets/text/EditableText.tsx @@ -286,7 +286,7 @@ function useWatchdogCrashHandling() { const currentState = watchdog.state; logInfo(`CKEditor state changed to ${currentState}`); - if (currentState === "ready") { + if (currentState === "ready" && hasCrashed.current) { hasCrashed.current = false; watchdog.editor?.focus(); }