diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a16c6485..27cbc0cb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- Changed the values of the global heat map to fixed-point notation + ### Fixed - Fixed the links of cryptocurrency assets in the positions table diff --git a/apps/client/src/app/components/world-map-chart/world-map-chart.component.ts b/apps/client/src/app/components/world-map-chart/world-map-chart.component.ts index 3b2f3b72a..22e4adc66 100644 --- a/apps/client/src/app/components/world-map-chart/world-map-chart.component.ts +++ b/apps/client/src/app/components/world-map-chart/world-map-chart.component.ts @@ -54,6 +54,13 @@ export class WorldMapChartComponent implements OnChanges, OnDestroy, OnInit { ((this.countries[country].value * 100) / sum).toFixed(2) ); }); + } else { + // Convert value to fixed-point notation + Object.keys(this.countries).map((country) => { + this.countries[country].value = Number( + this.countries[country].value.toFixed(2) + ); + }); } this.svgMapElement = new svgMap({