summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts
index 1c2d443e..dfb485e1 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts
@@ -42,7 +42,7 @@ export class ReportListComponent implements AfterViewInit, OnInit {
this.delete = false;
this.initializeReportList();
}
-
+
initializeReportList() {
this.showSpinner = true;
this.dataSource = new AllReportsDataSource();
@@ -148,12 +148,12 @@ export class ReportListComponent implements AfterViewInit, OnInit {
displayReport( reportId: string ) {
this.reportId = reportId;
- this._router.navigate( ["v2/reports", "Edit", reportId] );
+ this._router.navigate( ["v2/app/reports", "Edit", reportId] );
}
runReport( reportId: string ) {
this.reportId = reportId;
- this._router.navigate( ['v2/run', reportId] );
+ this._router.navigate( ['v2/app/run', reportId] );
}
applyFilter( filterValue: string ) {
@@ -182,15 +182,15 @@ export class ReportListComponent implements AfterViewInit, OnInit {
this.showDialog = !this.showDialog;
this.closable = false;
}
-
+
openReportSchedule( reportId: string ) {
- this._router.navigate( ['v2/schedule_report', reportId] );
+ this._router.navigate( ['v2/app/schedule_report', reportId] );
}
copydisplayReport(reportId : string)
{
this.reportId = reportId;
- this._router.navigate(["v2/reports", "Copy",reportId]);
+ this._router.navigate(["v2/app/reports", "Copy",reportId]);
}
}