Skip to content

Commit 73e7fa0

Browse files
committed
chore(print/list): get note content to render
1 parent 7f81b83 commit 73e7fa0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/client/src/widgets/collections/legacy/ListOrGridView.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,13 @@ export function ListPrintView({ note, noteIds: unfilteredNoteIds, highlightedTok
4747
<div class="note-list list-print-view">
4848
<div class="note-list-container use-tn-links">
4949
{notes?.map(childNote => (
50-
<h1>{childNote.title}</h1>
50+
<>
51+
<h1>{childNote.title}</h1>
52+
<NoteContent
53+
note={childNote}
54+
highlightedTokens={highlightedTokens}
55+
/>
56+
</>
5157
))}
5258
</div>
5359
</div>

0 commit comments

Comments
 (0)