File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed
components/v2/chartDeploymentHistory Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -292,21 +292,21 @@ function ChartDeploymentHistory({
292
292
gridColumnGap : '12px' ,
293
293
} }
294
294
>
295
- { installedAppInfo ?
296
- < div
297
- className = { `dc__app-summary__icon icon-dim-22 ${
298
- deployment ?. status &&
299
- installedAppInfo ?. deploymentType === DeploymentAppTypes . GITOPS || installedAppInfo ?. deploymentType === DeploymentAppTypes . MANIFEST_DOWNLOAD
300
- ? deployment ?. status . toLowerCase ( )
301
- : ''
302
- } ${
303
- installedAppInfo ?. deploymentType === DeploymentAppTypes . HELM
304
- ? helmDeploymentStatus
305
- : ''
306
- } `}
307
- > </ div > : '' }
295
+ < div
296
+ className = { `dc__app-summary__icon icon-dim-22 ${
297
+ ( deployment ?. status &&
298
+ installedAppInfo ?. deploymentType === DeploymentAppTypes . GITOPS ) ||
299
+ installedAppInfo ?. deploymentType === DeploymentAppTypes . MANIFEST_DOWNLOAD
300
+ ? deployment ?. status . toLowerCase ( )
301
+ : ''
302
+ } ${
303
+ deployment ?. status
304
+ ? helmDeploymentStatus
305
+ : ''
306
+ } `}
307
+ > </ div >
308
308
< div className = "flex column left dc__ellipsis-right" >
309
- < div className = "cn-9 fs-14" data-testid = "chart-deployment-time" >
309
+ < div className = "cn-9 fs-14" data-testid = "chart-deployment-time" >
310
310
{ moment ( new Date ( deployment . deployedAt . seconds * 1000 ) ) . format (
311
311
Moment12HourFormat ,
312
312
) }
Original file line number Diff line number Diff line change 24
24
.deployed ,
25
25
.synced ,
26
26
.sync.ok ,
27
+ .superseded ,
27
28
.deploy-success {
28
29
background-image : url (' ../assets/icons/appstatus/healthy.svg' );
29
30
}
73
74
}
74
75
75
76
.failed ,
76
- .unabletofetch ,
77
- .superseded {
77
+ .unabletofetch {
78
78
background-image : url (' ../assets/icons/appstatus/ic-appstatus-failed.svg' );
79
79
}
80
80
You can’t perform that action at this time.
0 commit comments