+
+ +
+ diff --git a/nx-dev/ui-common/src/lib/sidebar.tsx b/nx-dev/ui-common/src/lib/sidebar.tsx index 0acf368d4099b..5806a4a01e27f 100644 --- a/nx-dev/ui-common/src/lib/sidebar.tsx +++ b/nx-dev/ui-common/src/lib/sidebar.tsx @@ -180,7 +180,10 @@ export function SidebarMobile({ const isNxCloud: boolean = router.asPath.startsWith('/nx-cloud'); const isAPI: boolean = router.asPath.startsWith('/nx-api'); const isPlugins: boolean = router.asPath.startsWith('/extending-nx'); - const isNx: boolean = !isNxCloud && !isAPI && !isPlugins; + const isChangelog: boolean = router.asPath.startsWith('/changelog'); + const isAiChat: boolean = router.asPath.startsWith('/ai-chat'); + const isNx: boolean = + !isNxCloud && !isAPI && !isPlugins && !isChangelog && !isAiChat; const sections = [ { name: 'Home', href: '/', current: false }, @@ -190,15 +193,25 @@ export function SidebarMobile({ href: '/nx-cloud/intro/ci-with-nx', current: isNxCloud, }, + { + name: 'Extending Nx', + href: '/extending-nx/intro/getting-started', + current: isPlugins, + }, { name: 'API', href: '/nx-api', current: isAPI, }, { - name: 'Extending Nx', - href: '/extending-nx/intro/getting-started', - current: isPlugins, + name: 'Changelog', + href: '/changelog', + current: isChangelog, + }, + { + name: 'AI Chat (beta)', + href: '/ai-chat', + current: isAiChat, }, ]; return (