Browse Source

Add guard

pull/114/head
Thomas 4 years ago
parent
commit
82a376ceb5
  1. 2
      apps/client/src/app/components/performance-chart-dialog/performance-chart-dialog.component.ts

2
apps/client/src/app/components/performance-chart-dialog/performance-chart-dialog.component.ts

@ -46,7 +46,7 @@ export class PerformanceChartDialog {
this.historicalDataItems = this.data.historicalDataItems; this.historicalDataItems = this.data.historicalDataItems;
this.historicalDataItems.forEach((historicalDataItem) => { this.historicalDataItems?.forEach((historicalDataItem) => {
const benchmarkItem = historicalData.find((item) => { const benchmarkItem = historicalData.find((item) => {
return item.date === historicalDataItem.date; return item.date === historicalDataItem.date;
}); });

Loading…
Cancel
Save