From 9ef3f71ea656dca035238bb4f715666348a29616 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Wed, 28 Feb 2024 15:10:27 +0200 Subject: [PATCH] [develop]: Delete console log from stats profile of an indicator --- monitor-admin/utils/indicator-utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/monitor-admin/utils/indicator-utils.ts b/monitor-admin/utils/indicator-utils.ts index a8493563..161b2309 100644 --- a/monitor-admin/utils/indicator-utils.ts +++ b/monitor-admin/utils/indicator-utils.ts @@ -318,7 +318,6 @@ export class IndicatorUtils { public getFullUrl(stakeholder: Stakeholder, indicatorPath: IndicatorPath, fundingL0: string = null, startYear: string = null, endYear: string = null): string { let replacedUrl = indicatorPath.chartObject ? indicatorPath.chartObject : indicatorPath.url; if (indicatorPath.parameters.statsProfile) { - console.log(indicatorPath.parameters.statsProfile) replacedUrl = replacedUrl.split(ChartHelper.prefix + this.statsProfileParameter + ChartHelper.suffix).join(indicatorPath.parameters.statsProfile) } else if (stakeholder.statsProfile) { replacedUrl = replacedUrl.split(ChartHelper.prefix + this.statsProfileParameter + ChartHelper.suffix).join(stakeholder.statsProfile)