|
@ -124,7 +124,6 @@ export class HomeOverviewComponent implements OnDestroy, OnInit { |
|
|
.subscribe(({ chart, errors, performance }) => { |
|
|
.subscribe(({ chart, errors, performance }) => { |
|
|
this.errors = errors; |
|
|
this.errors = errors; |
|
|
this.performance = performance; |
|
|
this.performance = performance; |
|
|
this.isLoadingPerformance = false; |
|
|
|
|
|
|
|
|
|
|
|
this.historicalDataItems = chart.map( |
|
|
this.historicalDataItems = chart.map( |
|
|
({ date, netPerformanceInPercentageWithCurrencyEffect }) => { |
|
|
({ date, netPerformanceInPercentageWithCurrencyEffect }) => { |
|
@ -135,6 +134,8 @@ export class HomeOverviewComponent implements OnDestroy, OnInit { |
|
|
} |
|
|
} |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
this.isLoadingPerformance = false; |
|
|
|
|
|
|
|
|
this.changeDetectorRef.markForCheck(); |
|
|
this.changeDetectorRef.markForCheck(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|