Skip to content

Commit 4483f47

Browse files
NguyenThuyLanLan Nguyen Thuyleekelleher
authored
V16: Fix issue not display hidden tab name (#19370)
Fix issue not display hidden tab name Co-authored-by: Lan Nguyen Thuy <[email protected]> Co-authored-by: leekelleher <[email protected]>
1 parent ce7ce10 commit 4483f47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor.element.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements
131131
${this._hasRootGroups && this._tabs.length > 0
132132
? html`
133133
<uui-tab
134-
.label=${this.localize.term('general_generic')}
134+
label=${this.localize.term('general_generic')}
135135
.active=${this._routerPath + '/root' === this._activePath ||
136136
this._routerPath + '/' === this._activePath}
137-
.href=${this._routerPath + '/root'}></uui-tab>
137+
href=${this._routerPath + '/root'}></uui-tab>
138138
`
139139
: ''}
140140
${repeat(
@@ -143,10 +143,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements
143143
(tab, index) => {
144144
const path = this._routerPath + '/tab/' + encodeFolderName(tab.name || '');
145145
return html`<uui-tab
146-
.label=${this.localize.string(tab.name ?? '#general_unnamed')}
146+
label=${this.localize.string(tab.name ?? '#general_unnamed')}
147147
.active=${path === this._activePath ||
148148
(!this._hasRootGroups && index === 0 && this._routerPath + '/' === this._activePath)}
149-
.href=${path}></uui-tab>`;
149+
href=${path}></uui-tab>`;
150150
},
151151
)}
152152
</uui-tab-group>`

0 commit comments

Comments
 (0)