File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/app/ClusterDetails/components Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ const ClusterDetailsOverview: React.FunctionComponent = () => {
8787 >
8888 < DescriptionListGroup name = "Basic Info" >
8989 < DescriptionListTerm > Name</ DescriptionListTerm >
90- < DescriptionListDescription > { clusterID } </ DescriptionListDescription >
90+ < DescriptionListDescription > { cluster ?. clusterName } </ DescriptionListDescription >
91+ < DescriptionListTerm > Infrastructure ID</ DescriptionListTerm >
92+ < DescriptionListDescription > { cluster ?. infraId } </ DescriptionListDescription >
9193 < DescriptionListTerm > Status</ DescriptionListTerm >
9294 < DescriptionListDescription > { renderStatusLabel ( cluster ?. status ) } </ DescriptionListDescription >
9395 </ DescriptionListGroup >
@@ -119,6 +121,8 @@ const ClusterDetailsOverview: React.FunctionComponent = () => {
119121 < DescriptionListDescription >
120122 { parseScanTimestamp ( cluster ?. lastScanTimestamp ) }
121123 </ DescriptionListDescription >
124+ < DescriptionListTerm > Age (days)</ DescriptionListTerm >
125+ < DescriptionListDescription > { cluster ?. age } </ DescriptionListDescription >
122126 </ DescriptionListGroup >
123127
124128 < DescriptionListGroup name = "Extra metadata" >
You can’t perform that action at this time.
0 commit comments