mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
removed notes_parent, instead using notes_tree
This commit is contained in:
@@ -58,8 +58,8 @@ const treeUtils = (function() {
|
||||
const path = [];
|
||||
|
||||
while (node) {
|
||||
if (node.data.note_tree_id) {
|
||||
path.push(node.data.note_tree_id);
|
||||
if (node.data.note_id) {
|
||||
path.push(node.data.note_id);
|
||||
}
|
||||
|
||||
node = node.getParent();
|
||||
|
||||
Reference in New Issue
Block a user