diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/content/edit.controller.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/content/edit.controller.js index 47f8ebcf69..386c97b815 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/content/edit.controller.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/content/edit.controller.js @@ -177,8 +177,12 @@ // get available templates $scope.availableTemplates = getAvailableTemplates($scope.content); - // get the auditTrail - setAuditTrailActionColor($scope.auditTrail); + // get the auditTrail - fake loading + $scope.loadingAuditTrail = true; + $timeout(function(){ + setAuditTrailActionColor($scope.auditTrail); + $scope.loadingAuditTrail = false; + }, 2000); } diff --git a/src/Umbraco.Web.UI.Client/src/views/components/content/edit.html b/src/Umbraco.Web.UI.Client/src/views/components/content/edit.html index 3eed579df6..6d4a85a723 100644 --- a/src/Umbraco.Web.UI.Client/src/views/components/content/edit.html +++ b/src/Umbraco.Web.UI.Client/src/views/components/content/edit.html @@ -27,18 +27,25 @@ - - {{ url }} - + + + + + {{url}} + + + - - - - - + + + + + + + - - - {{ item.user.name }} - {{ item.date }} - - - {{ item.action }} - + + {{ item.user.name }} + {{ item.date }} + + + {{ item.action }} + {{ item.description }} + + - + + + + + + - - - - +