Call out the 'down' status too, since it's a pretty bad one
This commit is contained in:
parent
38d23b5ba8
commit
8a9b60f011
|
@ -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 '';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue