You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
313 B

@if (status$ | async; as status) {
@if (status.isHealthy) {
<span class="text-success" i18n>Available</span>
} @else {
<span class="text-danger" i18n>Unavailable</span>
}
} @else {
<ngx-skeleton-loader
animation="pulse"
[theme]="{
height: '1.5rem',
width: '100%'
}"
/>
}