chore(print/list): get note content to render

This commit is contained in:
Elian Doran
2025-11-20 20:15:44 +02:00
parent 7f81b83955
commit 73e7fa0f85

View File

@@ -47,7 +47,13 @@ export function ListPrintView({ note, noteIds: unfilteredNoteIds, highlightedTok
<div class="note-list list-print-view"> <div class="note-list list-print-view">
<div class="note-list-container use-tn-links"> <div class="note-list-container use-tn-links">
{notes?.map(childNote => ( {notes?.map(childNote => (
<h1>{childNote.title}</h1> <>
<h1>{childNote.title}</h1>
<NoteContent
note={childNote}
highlightedTokens={highlightedTokens}
/>
</>
))} ))}
</div> </div>
</div> </div>