From ae6e222c506c170ecd24d758328e0678f158bb47 Mon Sep 17 00:00:00 2001 From: azivner Date: Mon, 1 Jan 2018 23:28:00 -0500 Subject: [PATCH] fix for moving note inside not-yet folder --- public/javascripts/tree_changes.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/javascripts/tree_changes.js b/public/javascripts/tree_changes.js index d7f5af8115..0378ece5ac 100644 --- a/public/javascripts/tree_changes.js +++ b/public/javascripts/tree_changes.js @@ -51,12 +51,16 @@ const treeChanges = (function() { changeNode(nodeToMove, node => { // 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 + // this doesn't work if this isn't a folder yet, that's why we expand second time below toNode.setExpanded(true); node.moveTo(toNode); toNode.folder = true; toNode.renderTitle(); + + // this expands the note in case it become the folder only after the move + toNode.setExpanded(true); }); } }