removed notes_parent, instead using notes_tree

This commit is contained in:
azivner
2017-11-19 11:28:46 -05:00
parent b22eb2db1e
commit f18d25911b
5 changed files with 69 additions and 60 deletions

View File

@@ -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();