From d951d4072047ad5ebbb0608203a63e390d04580e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Fri, 6 Jan 2023 19:10:49 +0100 Subject: [PATCH] simpler argument name --- .../property-action-menu/property-action-menu.element.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ef4caef8e7..8e232f5e76 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 @@ -75,8 +75,8 @@ export class UmbPropertyActionMenuElement extends UmbLitElement { ) ) ), - (propertyActionManifests) => { - this._actions = propertyActionManifests; + (manifests) => { + this._actions = manifests; } ); }