File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
public/app/percona/shared/components/PerconaBootstrapper/PerconaNavigation Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -615,3 +615,13 @@ export const PMM_NAV_QAN: NavModelItem = {
615615 sortWeight : WEIGHTS . dashboards ,
616616 hideFromTabs : true ,
617617} ;
618+
619+ export const AI_CHAT_DEMO_PAGE : NavModelItem = {
620+ id : 'ai-chat-demo' ,
621+ icon : 'ai' ,
622+ text : 'AI Chat Demo' ,
623+ url : '/pmm-ui/ai-chat' ,
624+ subTitle : 'AI Chat Demo' ,
625+ sortWeight : WEIGHTS . dashboards ,
626+ hideFromTabs : true ,
627+ } ;
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ import {
3636 PMM_TICKETS_PAGE ,
3737 PMM_DUMP_PAGE ,
3838 PMM_EXPORT_DUMP_PAGE ,
39+ AI_CHAT_DEMO_PAGE ,
3940} from './PerconaNavigation.constants' ;
4041import {
4142 addAccessRolesLink ,
@@ -98,6 +99,9 @@ const PerconaNavigation: FC = () => {
9899 // QAN
99100 updatedNavTree . push ( PMM_NAV_QAN ) ;
100101
102+ // Add AI Chat Demo after QAN
103+ updatedNavTree . push ( AI_CHAT_DEMO_PAGE ) ;
104+
101105 if ( isPlatformUser ) {
102106 updatedNavTree . push ( PMM_ENTITLEMENTS_PAGE ) ;
103107 updatedNavTree . push ( PMM_TICKETS_PAGE ) ;
You can’t perform that action at this time.
0 commit comments