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.
 
 
 
 
 

16 lines
328 B

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