fix pasting into non-expanded non-loaded node (UI only)

This commit is contained in:
azivner 2017-12-27 22:44:27 -05:00
parent da2cd57428
commit 332fc16852

View file

@ -29,10 +29,12 @@ const treeChanges = (function() {
await server.put('notes/' + node.data.note_tree_id + '/move-to/' + toNode.data.note_id);
changeNode(node, node => {
node.moveTo(toNode);
// first expand which will force lazy load and only then move the node
// if this is not expanded before moving, then lazy load won't happen because it already contains node
toNode.setExpanded(true);
node.moveTo(toNode);
toNode.folder = true;
toNode.renderTitle();
});