mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
fix attribute name autocomplete, no tooltip preview on path selection
This commit is contained in:
@@ -206,7 +206,11 @@ async function showPaths(noteId, node) {
|
||||
const notePath = parentNotePath ? (parentNotePath + '/' + noteId) : noteId;
|
||||
const title = await treeUtils.getNotePathTitle(notePath);
|
||||
|
||||
const item = $("<li/>").append(await linkService.createNoteLink(notePath, title));
|
||||
const noteLink = await linkService.createNoteLink(notePath, title);
|
||||
|
||||
noteLink.addClass("no-tooltip-preview");
|
||||
|
||||
const item = $("<li/>").append(noteLink);
|
||||
|
||||
if (node.getParent().data.noteId === parentNote.noteId) {
|
||||
item.addClass("current");
|
||||
|
||||
Reference in New Issue
Block a user