Browse Source
Bugfix/fix locale in markets overview (#3369)
* Fix locale if no user is logged in
* Update changelog
pull/3371/head
Thomas Kaul
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-market/home-market.html
|
|
@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Moved the holdings table to the holdings tab of the home page |
|
|
|
- Improved the performance labels (with and without currency effects) in the position detail dialog |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue with the benchmarks in the markets overview |
|
|
|
- Fixed an issue with the _Fear & Greed Index_ (market mood) in the markets overview |
|
|
|
|
|
|
|
## 2.78.0 - 2024-05-02 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -11,7 +11,7 @@ |
|
|
|
[colorScheme]="user?.settings?.colorScheme" |
|
|
|
[historicalDataItems]="historicalDataItems" |
|
|
|
[isAnimated]="true" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[locale]="user?.settings?.locale || undefined" |
|
|
|
[showXAxis]="true" |
|
|
|
[showYAxis]="true" |
|
|
|
[yMax]="100" |
|
|
@ -30,7 +30,7 @@ |
|
|
|
<div class="col-xs-12 col-md-8 offset-md-2"> |
|
|
|
<gf-benchmark |
|
|
|
[benchmarks]="benchmarks" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[locale]="user?.settings?.locale || undefined" |
|
|
|
[user]="user" |
|
|
|
/> |
|
|
|
<ngx-skeleton-loader |
|
|
|