File tree Expand file tree Collapse file tree 4 files changed +23
-6
lines changed Expand file tree Collapse file tree 4 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ import {
2626 PageHeader ,
2727 ToastVariantType ,
2828 ToastManager ,
29- getApplicationManagementBreadcrumb
29+ getApplicationManagementBreadcrumb ,
30+ BreadcrumbText ,
3031} from '@devtron-labs/devtron-fe-common-lib'
3132import Tippy from '@tippyjs/react'
3233import MultiChartSummary from './MultiChartSummary'
@@ -63,8 +64,8 @@ export default function ChartGroupAdvanceDeploy() {
6364 const { breadcrumbs } = useBreadcrumb (
6465 {
6566 alias : {
66- ...getApplicationManagementBreadcrumb ( ) ,
67- 'chart-store' : 'Chart store ' ,
67+ ...getApplicationManagementBreadcrumb ( ) ,
68+ 'chart-store' : 'Chart Store ' ,
6869 group : 'Chart groups' ,
6970 ':groupId' : {
7071 component : state . name ,
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ import {
3131 ButtonVariantType ,
3232 ButtonStyleType ,
3333 ComponentSizeType ,
34- getApplicationManagementBreadcrumb
34+ getApplicationManagementBreadcrumb ,
35+ BreadcrumbText ,
3536} from '@devtron-labs/devtron-fe-common-lib'
3637import Tippy from '@tippyjs/react'
3738import ChartGroupDeployments from './ChartGroupDeployments'
@@ -74,7 +75,11 @@ export default function ChartGroupDetails() {
7475 {
7576 alias : {
7677 ...getApplicationManagementBreadcrumb ( ) ,
77- 'chart-store' : null ,
78+ 'chart-store' : {
79+ component : < BreadcrumbText heading = "Chart Store" /> ,
80+ linked : true ,
81+ } ,
82+ 'discover' : null ,
7883 group : 'Chart groups' ,
7984 ':groupId' : {
8085 component : (
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ import {
2525 DetectBottom ,
2626 ToastManager ,
2727 ToastVariantType ,
28- getApplicationManagementBreadcrumb
28+ getApplicationManagementBreadcrumb ,
29+ BreadcrumbText ,
2930} from '@devtron-labs/devtron-fe-common-lib'
3031import ChartCard from './ChartCard'
3132import { ChartGroupEntry , Chart , ChartListType } from './charts.types'
@@ -83,6 +84,11 @@ export default function ChartGroupUpdate({}) {
8384 {
8485 alias : {
8586 ...getApplicationManagementBreadcrumb ( ) ,
87+ 'chart-store' : null ,
88+ discover : {
89+ component : < BreadcrumbText heading = "Chart Store" /> ,
90+ linked : true ,
91+ } ,
8692 group : 'Chart Groups' ,
8793 ':groupId' : {
8894 component : state . name ,
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import ChartGroupUpdate from '../ChartGroupUpdate'
2323import ChartGroupDetails from '../ChartGroupDetails'
2424import ChartGroupAdvanceDeploy from '../ChartGroupAdvanceDeploy'
2525import { ReactComponent as Add } from '../../../assets/icons/ic-add.svg'
26+ import { BreadcrumbText } from '@devtron-labs/devtron-fe-common-lib'
2627
2728const ChartGroupList = ( ) => {
2829 const [ loading , result ] = useAsync ( getChartGroups , [ ] )
@@ -31,6 +32,10 @@ const ChartGroupList = () => {
3132 alias : {
3233 ...getApplicationManagementBreadcrumb ( ) ,
3334 'chart-store' : null ,
35+ discover : {
36+ component : < BreadcrumbText heading = "Chart Store" /> ,
37+ linked : true ,
38+ } ,
3439 group : { component : 'Chart Groups' , linked : false } ,
3540 } ,
3641 } ,
You can’t perform that action at this time.
0 commit comments