Skip to content

Commit d46368f

Browse files
committed
Merge branch 'kubecon-2025' of https://github.com/devtron-labs/dashboard into feat/catalog-schema
2 parents a4ba04d + cba985d commit d46368f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/components/Navigation/Navigation.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ export const Navigation = ({
245245
onClick={handleNavGroupClick(item)}
246246
to={findActiveNavigationItemOfNavGroup(item.items)?.href}
247247
onHover={handleNavGroupHover(item)}
248+
showTooltip={item.disabled}
248249
/>
249250
))}
250251
{!window._env_.K8S_CLIENT && !isAirgapped && showStackManager && (

src/components/Navigation/constants.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,12 +417,14 @@ export const NAVIGATION_LIST: NavigationGroupType[] = [
417417
title: 'Backup & Restore',
418418
id: 'backup-and-restore',
419419
icon: 'ic-database-backup',
420+
disabled: true,
420421
items: [
421422
{
422423
title: 'Overview',
423424
dataTestId: 'backup-and-restore-overview',
424425
id: 'backup-and-restore-overview',
425426
icon: 'ic-speedometer',
427+
disabled: true,
426428
href: COMMON_URLS.BACKUP_AND_RESTORE_OVERVIEW,
427429
},
428430
{
@@ -471,12 +473,14 @@ export const NAVIGATION_LIST: NavigationGroupType[] = [
471473
id: 'ai-recommendations',
472474
title: 'AI Recommendations',
473475
icon: 'ic-openai',
476+
disabled: true,
474477
items: [
475478
{
476479
title: 'Overview',
477480
dataTestId: 'ai-recommendations-overview',
478481
id: 'ai-recommendations-overview',
479482
icon: 'ic-speedometer',
483+
disabled: true,
480484
href: COMMON_URLS.AI_RECOMMENDATIONS_OVERVIEW,
481485
},
482486
],

0 commit comments

Comments
 (0)