diff --git a/src/Umbraco.Web.UI.Client/src/common/services/contenteditinghelper.service.js b/src/Umbraco.Web.UI.Client/src/common/services/contenteditinghelper.service.js index c7567983c9..2eee59e8a8 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/contenteditinghelper.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/contenteditinghelper.service.js @@ -52,6 +52,12 @@ function contentEditingHelper($location, $routeParams, notificationsService, ser }); } + //check for changed built-in properties of the content + if (!_.isEqual(origContent.name, newContent.name)) { + origContent.name = newContent.name; + } + + //check for changed properties of the content for (var p in allOrigProps) { var newProp = getNewProp(allOrigProps[p].alias); if (newProp && !_.isEqual(allOrigProps[p].value, newProp.value)) {