feat(layout/inline-title): support in options as well

This commit is contained in:
Elian Doran
2025-12-13 12:01:06 +02:00
parent 0939975631
commit 70c918c9c6

View File

@@ -67,6 +67,7 @@ export default function InlineTitle() {
function shouldShow(note: FNote | null | undefined, viewScope: ViewScope | undefined) {
if (!note) return false;
if (viewScope?.viewMode !== "default") return false;
if (note.noteId.startsWith("_options")) return true;
return supportedNoteTypes.has(note.type);
}