From 8aa5fe86952c35a737f2a9d03b857c80ce06faf8 Mon Sep 17 00:00:00 2001 From: Dave Woestenborghs Date: Wed, 14 Nov 2018 14:56:16 +0100 Subject: [PATCH] Setting hide-alias to false still hides the alias When using umb-editor-header setting hide-alias to false still hides the alias. I would expect that it would be visible. The only thing that works to make it visible to is removing the hide-alias attribute. This PR fixes this. So now you can hide the alias based on property of your scope. Dave --- .../directives/components/editor/umbeditorheader.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorheader.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorheader.directive.js index 9f558ea7e4..f1e0a09903 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorheader.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorheader.directive.js @@ -252,7 +252,7 @@ Use this directive to construct a header inside the main editor window. icon: "=", hideIcon: "@", alias: "=", - hideAlias: "@", + hideAlias: "=", description: "=", hideDescription: "@", descriptionLocked: "@",