Browse Source
Feature/add hint about delayed market data to markets overview (#4699)
* Add hint about delayed market data
* Update changelog
pull/4723/head^2
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-market/home-market.html
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added a hint about delayed market data to the markets overview |
|
|
|
- Added the asset profile count per data provider to the endpoint `GET api/v1/admin` |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -36,6 +36,14 @@ |
|
|
|
[locale]="user?.settings?.locale || undefined" |
|
|
|
[user]="user" |
|
|
|
/> |
|
|
|
@if (benchmarks?.length > 0) { |
|
|
|
<div class="mt-3 text-center"> |
|
|
|
<small class="text-muted" i18n> |
|
|
|
Calculations are based on delayed market data and may not be |
|
|
|
displayed in real-time.</small |
|
|
|
> |
|
|
|
</div> |
|
|
|
} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|