diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts index 03db4e593a..6898826005 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-actions/shared/property-action-menu/property-action-menu.element.ts @@ -69,7 +69,10 @@ export class UmbPropertyActionMenuElement extends UmbLitElement { this._open = value; }); - this.addEventListener('close', this._propertyActionMenuContext.close); + this.addEventListener('close', (e) => { + this._propertyActionMenuContext.close(); + e.stopPropagation(); + }); } private _observeActions(alias: string) {