diff --git a/src/Umbraco.Web.UI.Client/src/views/common/dialogs/user.controller.js b/src/Umbraco.Web.UI.Client/src/views/common/dialogs/user.controller.js index a7ecbada40..ceac0f36f4 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/dialogs/user.controller.js +++ b/src/Umbraco.Web.UI.Client/src/views/common/dialogs/user.controller.js @@ -11,8 +11,7 @@ angular.module("umbraco") }; $scope.gotoHistory = function (link) { - $location.path(link); - $scope.$apply(); + $location.path(link); $scope.hide(); }; }); \ No newline at end of file diff --git a/src/Umbraco.Web/Models/ContentEditing/EntityBasic.cs b/src/Umbraco.Web/Models/ContentEditing/EntityBasic.cs index cbdecb0ca7..d2f4df5006 100644 --- a/src/Umbraco.Web/Models/ContentEditing/EntityBasic.cs +++ b/src/Umbraco.Web/Models/ContentEditing/EntityBasic.cs @@ -40,9 +40,9 @@ namespace Umbraco.Web.Models.ContentEditing public string Alias { get; set; } /// - /// For now we'll exclude this from the json results, this is needed for permissions check filtering + /// The path of the entity /// - [IgnoreDataMember] + [DataMember(Name = "path")] public string Path { get; set; } } }