diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/collection/action/collection-action-button.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/collection/action/collection-action-button.element.ts index 90aa744d03..41d0a95b18 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/collection/action/collection-action-button.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/collection/action/collection-action-button.element.ts @@ -71,7 +71,9 @@ export class UmbCollectionActionButtonElement extends UmbLitElement { @click=${this._onClick} look="outline" color="default" - label=${this.manifest?.meta.label || ''} + label=${ifDefined( + this.manifest?.meta.label ? this.localize.string(this.manifest.meta.label) : this.manifest?.name, + )} href="${ifDefined(this.manifest?.meta.href)}" .state=${this._buttonState}> `;