diff options
author | Sudarshan Kumar <sudarshan.kumar@att.com> | 2020-08-13 01:08:52 +0530 |
---|---|---|
committer | Sudarshan Kumar <sudarshan.kumar@att.com> | 2020-08-13 01:09:04 +0530 |
commit | 540bb3f27c23498653791cd140c10bf8722e4028 (patch) | |
tree | c49b305fe73c75463a32a06b5c1658f37ee911b3 | |
parent | b2a6bafc6471d8f3e6a8acd52e57cc4d3cb7547b (diff) |
Fixed Ruoting URL for Reports
Fixed Ruoting URL for Reports
Issue-ID: PORTAL-902
Change-Id: Icb8c95f39f312e013c384e13c4bd43e50352d47f
Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
2 files changed, 4 insertions, 4 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.ts index 059c90b5..33e298d2 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/definition.component.ts @@ -421,7 +421,7 @@ export class DefinitionComponent implements OnInit, OnDestroy { stackTrace = response['anyStacktrace']; stackTrace = stackTrace.substring(0, stackTrace.indexOf('-')); this.reportId = parseInt(stackTrace); - this._router.navigate(['v2/reports', 'Edit', this.reportId]); + this._router.navigate(['v2/app/reports', 'Edit', this.reportId]); } this.showDialog = !this.showDialog; this.closable = true; @@ -540,7 +540,7 @@ export class DefinitionComponent implements OnInit, OnDestroy { stackTrace = response['anyStacktrace']; stackTrace = stackTrace.substring(0, stackTrace.indexOf('-')); this.reportId = parseInt(stackTrace); - this._router.navigate(['v2/reports', 'Edit', this.reportId]); + this._router.navigate(['v2/app/reports', 'Edit', this.reportId]); } this.showDialog = !this.showDialog; this.closable = true; @@ -571,7 +571,7 @@ export class DefinitionComponent implements OnInit, OnDestroy { this._definitionService.clearSession() .subscribe((response) => { console.log(response); - this._router.navigate(['v2/report-list']); + this._router.navigate(['v2/app/report-list']); }); } diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.ts index c1559c75..afa84c63 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql.component.ts @@ -137,7 +137,7 @@ export class SQLComponent implements OnInit { this._http.get(environment.baseUrl + 'report/wizard/retrieve_def_tab_wise_data/InSession') .subscribe((response) => { console.log(response); - this._router.navigate(['v2/reports', 'Edit', response['reportId']]); + this._router.navigate(['v2/app/reports', 'Edit', response['reportId']]); }); } } |