Skip to content

Commit f8d6a97

Browse files
authored
Blocks: localize group headline (#21090)
localize block group headline
1 parent c910f54 commit f8d6a97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/block/block/workspace/views/edit/block-workspace-view-edit-tab.element.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ export class UmbBlockWorkspaceViewEditTabElement extends UmbLitElement {
9090
: repeat(
9191
this._groups,
9292
(group) => group.key,
93-
(group) => html` <uui-box .headline=${group.name}>${this.renderGroup(group)}</uui-box>`,
93+
(group) =>
94+
html`<uui-box .headline=${this.localize.string(group.name)}>${this.renderGroup(group)}</uui-box>`,
9495
)}
9596
`;
9697
}

0 commit comments

Comments
 (0)