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