diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-action/shared/property-action-menu/property-action-menu.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-action/shared/property-action-menu/property-action-menu.element.ts index 023e5863d3..b8af412389 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-action/shared/property-action-menu/property-action-menu.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-action/shared/property-action-menu/property-action-menu.element.ts @@ -24,8 +24,11 @@ export class UmbPropertyActionMenuElement extends UmbLitElement { private _value?: unknown; + #propertyEditorUiAlias = ''; + @property() set propertyEditorUiAlias(alias: string) { + this.#propertyEditorUiAlias = alias; // TODO: Stop using string for 'propertyAction', we need to start using Const. // TODO: Align property actions with entity actions. this.#actionsInitializer = new UmbExtensionsElementInitializer( @@ -39,6 +42,10 @@ export class UmbPropertyActionMenuElement extends UmbLitElement { 'extensionsInitializer', ); } + get propertyEditorUiAlias() { + return this.#propertyEditorUiAlias; + } + @state() private _actions: Array> = [];