fix: Use pause icon for Suspended (#4838) (#4905)

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2020-11-30 16:46:03 -05:00 committed by GitHub
parent 48291d8701
commit 3ca1b02725
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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 {

View file

@ -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;