Bugfix/hide data provider warning while loading (#605)

* Hide data provider warning while loading

* Update changelog
This commit is contained in:
Thomas Kaul
2021-12-31 10:21:41 +01:00
committed by GitHub
parent cebf879d67
commit 635f10e2d0
2 changed files with 6 additions and 2 deletions

View File

@@ -3,12 +3,15 @@
<div
class="flex-grow-1 status text-muted text-right"
[title]="
hasError
hasError && !isLoading
? 'Sorry! Our data provider partner is experiencing the hiccups.'
: ''
"
>
<ion-icon *ngIf="hasError" name="alert-circle-outline"></ion-icon>
<ion-icon
*ngIf="hasError && !isLoading"
name="alert-circle-outline"
></ion-icon>
</div>
<div *ngIf="isLoading" class="align-items-center d-flex">
<ngx-skeleton-loader