Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit b700bb6

Browse files
committed
fix(search): note path contains icon (closes #1721)
1 parent 069e307 commit b700bb6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/Release Notes/Release Notes/v0.93.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* Full anonymization not redacting attachment titles.
1616
* Unable to trigger "Move to" dialog via keyboard shortcut.
1717
* [Note ordering doesn't load correctly, only shows up right after moving a note](https://github.com/TriliumNext/Notes/issues/1727)
18+
* [Note selection dialog shows icon class when selecting result with arrow button (jump to note / create link)](https://github.com/TriliumNext/Notes/issues/1721)
1819

1920
## ✨ Improvements
2021

src/services/search/services/search.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ function searchNotesForAutocomplete(query: string, fastSearch: boolean = true) {
358358
return {
359359
notePath: result.notePath,
360360
noteTitle: title,
361-
notePathTitle: `${icon} ${result.notePathTitle}`,
361+
notePathTitle: result.notePathTitle,
362362
highlightedNotePathTitle: result.highlightedNotePathTitle,
363363
icon: icon ?? "bx bx-note"
364364
};

0 commit comments

Comments
 (0)