From 220a25a2566c90bc540e7190342f73824d2ff54a Mon Sep 17 00:00:00 2001 From: mravula Date: Mon, 31 Aug 2020 12:29:32 -0400 Subject: Raptor UI Changes, user profile, folder restructure Issue-ID: PORTAL-902 Change-Id: Ib76bb3fce7efe55504b75d2fc4764bafb9f8e908 Signed-off-by: mravula --- .../Report_List/Report/chart-wizard/chart-wizard.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard.component.ts') diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard.component.ts index 18f5ab1b..2d9a52c0 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/chart-wizard/chart-wizard.component.ts @@ -109,7 +109,7 @@ export class ChartWizardComponent implements OnInit { } } - saveChartData() { + saveChartData(value: String) { this.showSpinner = true; this.chartJson.chartTypeJSON = { index: 0, @@ -133,7 +133,7 @@ export class ChartWizardComponent implements OnInit { this.chartJson.rangeAxisList.push(removeList); } - this.chartService.saveChartData(this.chartJson).subscribe( + this.chartService.saveChartData(this.chartJson, value).subscribe( (response) => { this.ngOnInit(); }); -- cgit 1.2.3-korg