From 4483f47668dc22b27c3bdf93f635ee23ffc293b5 Mon Sep 17 00:00:00 2001 From: NguyenThuyLan <116753400+NguyenThuyLan@users.noreply.github.com> Date: Thu, 31 Jul 2025 21:29:41 +0700 Subject: [PATCH] V16: Fix issue not display hidden tab name (#19370) Fix issue not display hidden tab name Co-authored-by: Lan Nguyen Thuy Co-authored-by: leekelleher --- .../workspace/views/edit/content-editor.element.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor.element.ts b/src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor.element.ts index 8432f1c8cf..bac7610e64 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit/content-editor.element.ts @@ -131,10 +131,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements ${this._hasRootGroups && this._tabs.length > 0 ? html` + href=${this._routerPath + '/root'}> ` : ''} ${repeat( @@ -143,10 +143,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements (tab, index) => { const path = this._routerPath + '/tab/' + encodeFolderName(tab.name || ''); return html``; + href=${path}>`; }, )} `