From df2a6c09f0cc7c2303494b777210feece0c51cbc Mon Sep 17 00:00:00 2001 From: argirok Date: Thu, 5 May 2022 11:40:13 +0300 Subject: [PATCH] fix in export indicators (change variable to numbers) --- src/app/topic/indicators.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/topic/indicators.component.ts b/src/app/topic/indicators.component.ts index 379a5a1..6b3decf 100644 --- a/src/app/topic/indicators.component.ts +++ b/src/app/topic/indicators.component.ts @@ -1288,7 +1288,7 @@ export class IndicatorsComponent implements OnInit, OnDestroy, OnChanges, AfterV this.exportLoading = true; let indicators = []; let index: number = 0; - this.charts.forEach(section => { + this.numbers.forEach(section => { section.indicators.forEach(indicator => { indicator.indicatorPaths.forEach(indicatorPath => { // console.debug("export number: ", this.statisticsService.getNumberUrl(indicatorPath.source, this.indicatorUtils.getFullUrl(this.stakeholder, indicatorPath)));