From c09ef3af804495dda592af552858fe89263cad42 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 24 Feb 2026 18:14:13 +0200 Subject: [PATCH] fix(note_title): help pages have editable title --- apps/client/src/widgets/note_title.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/src/widgets/note_title.tsx b/apps/client/src/widgets/note_title.tsx index b2f8e68697..f886d9f7db 100644 --- a/apps/client/src/widgets/note_title.tsx +++ b/apps/client/src/widgets/note_title.tsx @@ -26,6 +26,7 @@ export default function NoteTitleWidget(props: {className?: string}) { || note === undefined || (note.isProtected && !protected_session_holder.isProtectedSessionAvailable()) || isLaunchBarConfig(note.noteId) + || note.noteId.startsWith("_help_") || viewScope?.viewMode !== "default"; setReadOnly(isReadOnly); }, [ note, note?.noteId, note?.isProtected, viewScope?.viewMode ]);