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:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-07-20 13:42:49 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-07-20 23:54:00 +0530
commit05af2c42b57d71d375ba2e50fd10a3fd682ea226 (patch)
tree54b1d6ec489f7a5d037a1b52b504ec3804ed8260 /ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.component.ts
parent5b557b51c6e41315ad48727340df8d3247154330 (diff)
Integrated UI lazy loading and Raptor update
Integrated UI lazy loading and Raptor update Issue-ID: PORTAL-902 Change-Id: I0cf9f22a57c2be4e5b83981bdf0984768a5f44a6 Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
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]);
}
}