mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-23 09:18:26 +00:00
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
parent
48291d8701
commit
3ca1b02725
2 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ exports[`HealthStatusIcon.Progressing 1`] = `
|
|||
|
||||
exports[`HealthStatusIcon.Suspended 1`] = `
|
||||
<i
|
||||
className="fa fa-heart"
|
||||
className="fa fa-pause-circle"
|
||||
qe-id="utils-health-status-title"
|
||||
style={
|
||||
Object {
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ export const HealthStatusIcon = ({state}: {state: appModels.HealthStatus}) => {
|
|||
break;
|
||||
case appModels.HealthStatuses.Suspended:
|
||||
color = COLORS.health.suspended;
|
||||
icon = 'fa-heart';
|
||||
icon = 'fa-pause-circle';
|
||||
break;
|
||||
case appModels.HealthStatuses.Degraded:
|
||||
color = COLORS.health.degraded;
|
||||
|
|
|
|||
Loading…
Reference in a new issue