Browse Source

Feature/improve labels in data provider status component (#5008)

* Improve labels
pull/3661/merge
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
99cab25fe0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/client/src/app/components/data-provider-status/data-provider-status.component.html

4
apps/client/src/app/components/data-provider-status/data-provider-status.component.html

@ -1,8 +1,8 @@
@if (status$ | async; as status) {
@if (status.isHealthy) {
<span class="text-success" i18n>Online</span>
<span class="text-success" i18n>Available</span>
} @else {
<span class="text-danger" i18n>Offline</span>
<span class="text-danger" i18n>Unavailable</span>
}
} @else {
<ngx-skeleton-loader

Loading…
Cancel
Save