From 4266e2b1d159b342389c49fa4c7f3001814b554f Mon Sep 17 00:00:00 2001 From: Kenn Jacobsen Date: Wed, 13 May 2020 20:45:57 +0200 Subject: [PATCH] Fix "Edit: undefined" in content editor title --- .../components/editor/umbeditorcontentheader.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js index 7bd812e321..9b8f92d7c3 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js @@ -27,7 +27,7 @@ var title = data[2] + ": "; if (!scope.isNew) { scope.a11yMessage += " " + scope.editor.content.name; - title += scope.content.name; + title += scope.editor.content.name; } else { var name = editorState.current.contentTypeName; scope.a11yMessage += " " + name;