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

* Hide data provider warning while loading

* Update changelog
pull/607/head
Thomas Kaul 3 years ago committed by GitHub
parent cebf879d67
commit 635f10e2d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Hid the data provider warning while loading
- Fixed an exception with the market state caused by a failed data provider request - Fixed an exception with the market state caused by a failed data provider request
- Fixed the reload of the position detail dialog (with query parameters) - Fixed the reload of the position detail dialog (with query parameters)

@ -3,12 +3,15 @@
<div <div
class="flex-grow-1 status text-muted text-right" class="flex-grow-1 status text-muted text-right"
[title]=" [title]="
hasError hasError && !isLoading
? 'Sorry! Our data provider partner is experiencing the hiccups.' ? '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>
<div *ngIf="isLoading" class="align-items-center d-flex"> <div *ngIf="isLoading" class="align-items-center d-flex">
<ngx-skeleton-loader <ngx-skeleton-loader

Loading…
Cancel
Save