summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-09-10 18:07:23 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-09-10 21:57:57 +0530
commit710a0082f766942d6aef4eb2c2e9b4a1b0a34330 (patch)
treef5702cc3c8883d1c4281a170246d05437da21aa3 /ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts
parent85f4b0397224b43cae34aa1d04352ba1702b3493 (diff)
Fixed Service URL of Report Deletion
Fixed Service URL of Report Deletion and updated footer css Issue-ID: PORTAL-1006 Change-Id: I9aa142e915ed0421d8c28e342fcbcbd18616911d 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.service.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts
index aad435f5..d0094ab9 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts
@@ -12,7 +12,7 @@ export class ReportListService {
deleteReport(reportId : string) : Observable<any>
{
- return this._http.get(environment.baseUrl + "/raptor.htm?action=report.delete&c_master=" + reportId);
+ return this._http.get(environment.baseUrl + "raptor.htm?action=report.delete&c_master=" + reportId);
}
getAllReports():Observable<any>{
return this._http.get(environment.baseUrl + "raptor.htm?action=report.search.execute&r_page=0&show_all=true");