diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/hostedPrivateCloud.ts b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/hostedPrivateCloud.ts index 4da8d8856f5c..1811977f46e2 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/hostedPrivateCloud.ts +++ b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/navigation-tree/services/hostedPrivateCloud.ts @@ -110,7 +110,7 @@ hostedPrivateCloudUniverse.children = [ tag: NodeTag.NEW, routing: { application: 'hycu', - hash: '', + hash: '#/', }, features: ['hycu'], }, diff --git a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/utils.ts b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/utils.ts index 24e7eb14d8dd..cfc183b7fb64 100644 --- a/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/utils.ts +++ b/packages/manager/apps/container/src/container/nav-reshuffle/sidebar/utils.ts @@ -233,7 +233,8 @@ export const findNodeByRouting = (root: Node, locationPath: string) => { const nodePath = node.routing.hash ? node.routing.hash.replace('#', node.routing.application) : '/' + node.routing.application; - const parsedPath = splitPathIntoSegmentsWithoutRouteParams(nodePath); + const parsedPath = splitPathIntoSegmentsWithoutRouteParams(nodePath).map((path) => path.includes('/') ? path.replace('/', '') : path); + return { value: parsedPath.reduce( (acc: boolean, segment: string) => {