Browse Source
Feature/improve labels in data provider status component (#5008)
* Improve labels
pull/3661/merge
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
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 |
|
|
|