Call out the 'down' status too, since it's a pretty bad one

This commit is contained in:
Michael Lange 2020-01-31 12:55:24 -08:00
parent 38d23b5ba8
commit 8a9b60f011
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ export default Component.extend(WithVisibilityDetection, {
return 'status-text is-info';
} else if (compositeStatus === 'ineligible') {
return 'status-text is-warning';
} else if (compositeStatus === 'down') {
return 'status-text is-danger';
} else {
return '';
}