fix(note_title): help pages have editable title

This commit is contained in:
Elian Doran 2026-02-24 18:14:13 +02:00
parent 3151e6dafc
commit c09ef3af80
No known key found for this signature in database

View File

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