From 999e06d247aa6720110d81bba6ef11fc9cdc793d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Wed, 11 Jan 2023 11:19:28 +0100 Subject: [PATCH] listen for the right event name --- .../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..c703083fb1 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 @@ -184,7 +184,7 @@ export class UmbWorkspacePropertyElement extends UmbLitElement { this._configObserver?.destroy(); if(this._element) { - this._element.addEventListener('change', this._onPropertyEditorChange as any as EventListener); + this._element.addEventListener('property-value-change', this._onPropertyEditorChange as any as EventListener); this._valueObserver = this.observe(this._propertyContext.value, (value) => { if(this._element) {