mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 21:29:56 +01:00
chore(print/list): get note content to render
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user