mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
fixed autocomplete
This commit is contained in:
@@ -35,7 +35,7 @@ const treeUtils = (function() {
|
||||
}
|
||||
|
||||
function getFullName(noteTreeId) {
|
||||
let note = noteTree.getByNoteId(noteTreeId);
|
||||
let note = noteTree.getByNoteTreeId(noteTreeId);
|
||||
|
||||
if (note === null) {
|
||||
return "[unknown]";
|
||||
@@ -46,7 +46,7 @@ const treeUtils = (function() {
|
||||
while (note) {
|
||||
path.push(note.note_title);
|
||||
|
||||
note = noteTree.getByNoteId(note.note_pid);
|
||||
note = noteTree.getByNoteTreeId(note.note_pid);
|
||||
}
|
||||
|
||||
return path.reverse().join(" > ");
|
||||
|
Reference in New Issue
Block a user