style/status bar/backlinks flyout: rename HTML tag

This commit is contained in:
Adorian Doran
2025-12-15 10:52:14 +02:00
parent bc8f17ee5c
commit 05e98877b0

View File

@@ -389,7 +389,7 @@ export function BacklinksList({ note }: { note: FNote }) {
}); });
return backlinks.map(backlink => ( return backlinks.map(backlink => (
<div> <li>
<NoteLink <NoteLink
notePath={backlink.noteId} notePath={backlink.noteId}
showNotePath showNoteIcon showNotePath showNoteIcon
@@ -403,7 +403,7 @@ export function BacklinksList({ note }: { note: FNote }) {
<RawHtml html={excerpt} /> <RawHtml html={excerpt} />
)) ))
)} )}
</div> </li>
)); ));
} }