Browse Source

Bugfix/fix world map chart component (#1871)

* Clone countries before manipulation

* Update changelog
pull/1872/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
80a3668aa9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 3
      apps/client/src/app/components/world-map-chart/world-map-chart.component.ts

1
CHANGELOG.md

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed an issue in the global heat map component caused by manipulating an input property
- Fixed an issue with the currency inconsistency in the _EOD Historical Data_ service (convert from `GBX` to `GBp`)
## 1.256.0 - 2023-04-17

3
apps/client/src/app/components/world-map-chart/world-map-chart.component.ts

@ -30,6 +30,9 @@ export class WorldMapChartComponent implements OnChanges, OnDestroy, OnInit {
public ngOnInit() {}
public ngOnChanges() {
// Create a copy before manipulating countries object
this.countries = structuredClone(this.countries);
if (this.countries) {
this.isLoading = true;

Loading…
Cancel
Save