mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 09:12:08 +08:00
note expansion fix
This commit is contained in:
parent
3610926804
commit
14787e0283
1 changed files with 6 additions and 7 deletions
|
@ -95,6 +95,11 @@ const noteTree = (function() {
|
|||
|
||||
function prepareNoteTreeInner(parentNoteId) {
|
||||
const childNoteIds = parentToChildren[parentNoteId];
|
||||
if (!childNoteIds) {
|
||||
console.log("No children for " + noteId + ". This shouldn't happen.");
|
||||
return;
|
||||
}
|
||||
|
||||
const noteList = [];
|
||||
|
||||
for (const childNoteId of childNoteIds) {
|
||||
|
@ -327,14 +332,8 @@ const noteTree = (function() {
|
|||
},
|
||||
lazyLoad: function(event, data){
|
||||
const node = data.node.data;
|
||||
const noteTreeId = node.note_tree_id;
|
||||
|
||||
if (parentToChildren[noteTreeId]) {
|
||||
data.result = prepareNoteTreeInner(parentToChildren[noteTreeId]);
|
||||
}
|
||||
else {
|
||||
console.log("No children for " + noteTreeId + ". This shouldn't happen.");
|
||||
}
|
||||
data.result = prepareNoteTreeInner(node.note_id);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue