From 947783c505c9d223634bab62fb6064d9945c7745 Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sat, 8 Jul 2023 14:04:42 +0200 Subject: [PATCH] Revert --- libs/ui/src/lib/line-chart/line-chart.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/src/lib/line-chart/line-chart.component.ts b/libs/ui/src/lib/line-chart/line-chart.component.ts index a39b42a42..c6eb68cec 100644 --- a/libs/ui/src/lib/line-chart/line-chart.component.ts +++ b/libs/ui/src/lib/line-chart/line-chart.component.ts @@ -123,7 +123,7 @@ export class LineChartComponent implements AfterViewInit, OnChanges, OnDestroy { const marketPrices = []; this.historicalDataItems?.forEach((historicalDataItem, index) => { - benchmarkPrices.push(this.benchmarkDataItems?.[index]?.value || null); + benchmarkPrices.push(this.benchmarkDataItems?.[index]?.value); labels.push(historicalDataItem.date); marketPrices.push(historicalDataItem.value); });