fixed glitch where "unhoist" button disappears after renaming the hoisted note

This commit is contained in:
azivner 2019-01-02 19:26:01 +01:00
parent c85979b66b
commit 9e2e6fb50c

View File

@ -81,6 +81,9 @@ async function setNodeTitleWithPrefix(node) {
const title = (prefix ? (prefix + " - ") : "") + noteTitle;
node.setTitle(utils.escapeHtml(title));
// workaround for this: https://github.com/mar10/fancytree/issues/927
node.render(true, false);
}
function getNode(childNoteId, parentNoteId) {