Update workspace-property.element.ts

Fixes observing label to set description => should observe _propertyContext.description
This commit is contained in:
Nathan Woulfe
2023-01-12 11:32:13 +10:00
committed by GitHub
parent b249caf1ec
commit b7b6ec69da

View File

@@ -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;
});