Skip to content

Commit 8d49078

Browse files
authored
Fix observe property string name (#19411)
1 parent c2c4dc9 commit 8d49078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor-property.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class UmbContentWorkspaceViewEditPropertyElement extends UmbLitElement {
3333

3434
override willUpdate(changedProperties: Map<string, any>) {
3535
super.willUpdate(changedProperties);
36-
if (changedProperties.has('type') || changedProperties.has('variantId') || changedProperties.has('_context')) {
36+
if (changedProperties.has('property') || changedProperties.has('variantId') || changedProperties.has('_context')) {
3737
if (this.variantId && this.property && this._context) {
3838
const propertyVariantId = new UmbVariantId(
3939
this.property.variesByCulture ? this.variantId.culture : null,

0 commit comments

Comments
 (0)