From b7b6ec69dab9355d1d129712754c94adb42248ff Mon Sep 17 00:00:00 2001 From: Nathan Woulfe Date: Thu, 12 Jan 2023 11:32:13 +1000 Subject: [PATCH] Update workspace-property.element.ts Fixes observing label to set description => should observe _propertyContext.description --- .../components/workspace-property/workspace-property.element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace-property/workspace-property.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace-property/workspace-property.element.ts index 16cfea9da7..45b3c6d6bf 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace-property/workspace-property.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/workspace-property/workspace-property.element.ts @@ -146,7 +146,7 @@ export class UmbWorkspacePropertyElement extends UmbLitElement { this.observe(this._propertyContext.label, (label) => { this._label = label; }); - this.observe(this._propertyContext.label, (description) => { + this.observe(this._propertyContext.description, (description) => { this._description = description; });