fixes: U4-3429 After sorting the tree doesn't get refreshed (for content)

This commit is contained in:
Shannon
2013-11-14 19:14:52 +11:00
parent 4281610bc1
commit 77cb86f74b

View File

@@ -107,7 +107,10 @@ Umbraco.Sys.registerNamespace("Umbraco.Application");
},
reloadActionNode: function () {
angularHelper.safeApply($rootScope, function() {
navService.reloadNode();
var currentMenuNode = appState.getMenuState("currentNode");
if (currentMenuNode) {
navService.reloadNode(currentMenuNode);
}
});
},
refreshTree: function (treeAlias) {