Bugfix/fix locale in markets overview (#3369)
* Fix locale if no user is logged in * Update changelog
This commit is contained in:
parent
c1ad483f33
commit
3f41e5c5de
@ -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
|
- 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
|
- 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
|
## 2.78.0 - 2024-05-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
[colorScheme]="user?.settings?.colorScheme"
|
[colorScheme]="user?.settings?.colorScheme"
|
||||||
[historicalDataItems]="historicalDataItems"
|
[historicalDataItems]="historicalDataItems"
|
||||||
[isAnimated]="true"
|
[isAnimated]="true"
|
||||||
[locale]="user?.settings?.locale"
|
[locale]="user?.settings?.locale || undefined"
|
||||||
[showXAxis]="true"
|
[showXAxis]="true"
|
||||||
[showYAxis]="true"
|
[showYAxis]="true"
|
||||||
[yMax]="100"
|
[yMax]="100"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<div class="col-xs-12 col-md-8 offset-md-2">
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
||||||
<gf-benchmark
|
<gf-benchmark
|
||||||
[benchmarks]="benchmarks"
|
[benchmarks]="benchmarks"
|
||||||
[locale]="user?.settings?.locale"
|
[locale]="user?.settings?.locale || undefined"
|
||||||
[user]="user"
|
[user]="user"
|
||||||
/>
|
/>
|
||||||
<ngx-skeleton-loader
|
<ngx-skeleton-loader
|
||||||
|
Loading…
x
Reference in New Issue
Block a user