diff options
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay')
-rw-r--r-- | ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts index af61a97c..1142c318 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.ts @@ -146,6 +146,7 @@ export class RunReportComponent implements OnInit, AfterViewInit { .subscribe((response) => { if (response['errormessage']) { this.showError(response); + this.changeDetectorRefs.detectChanges(); } else { this.chartRunUrl = environment.baseUrl + 'raptor.htm?action=chart.run&c_master=' + this.inputReportId + this.queryString + '&refresh=Y&display_content=Y&r_page=0'; @@ -275,6 +276,7 @@ export class RunReportComponent implements OnInit, AfterViewInit { .subscribe((response) => { if (response['errormessage']) { this.showError(response); + this.changeDetectorRefs.detectChanges(); } else { this.chartRunUrl = environment.baseUrl + 'raptor.htm?action=chart.run&c_master=' + this.inputReportId + '&refresh=Y&display_content=Y&r_page=0'; @@ -313,6 +315,7 @@ export class RunReportComponent implements OnInit, AfterViewInit { .subscribe((response) => { if (response['errormessage']) { this.showError(response); + this.changeDetectorRefs.detectChanges(); } else { this.chartRunUrl = environment.baseUrl + 'raptor.htm?action=chart.run&c_master=' + this.inputReportId + this.queryString + '&refresh=Y&display_content=Y&r_page=0'; @@ -581,6 +584,7 @@ export class RunReportComponent implements OnInit, AfterViewInit { .subscribe((response) => { if (response['errormessage']) { this.showError(response); + this.changeDetectorRefs.detectChanges(); } else { const endDate: Date = new Date(); const endTime = endDate.getTime(); @@ -608,6 +612,7 @@ export class RunReportComponent implements OnInit, AfterViewInit { .subscribe((response) => { if (response['errormessage']) { this.showError(response); + this.changeDetectorRefs.detectChanges(); } else { const endDate: Date = new Date(); const endTime = endDate.getTime(); |