Fixed Service URL of Report Deletion 82/112482/2
authorSudarshan Kumar <sudarshan.kumar@att.com>
Thu, 10 Sep 2020 12:37:23 +0000 (18:07 +0530)
committerSudarshan Kumar <sudarshan.kumar@att.com>
Thu, 10 Sep 2020 16:27:57 +0000 (21:57 +0530)
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>
ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/footer/footer.component.scss
ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/sidebar/sidebar.component.scss
ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts

index dbb5a10..365bd9c 100644 (file)
@@ -15,16 +15,12 @@ $topnav-background-color: #222;
 }
 
 .footer {
-  position: fixed;
+  position: relative;
   bottom: 0;
-  // background-color: $topnav-background-color;
   width: 100%;
-  // height: 7.5em;
   z-index: 1002;
-  // bottom: 0px;
-  // right: 0px;
-  // width: 84%;
-  margin-bottom: -.5rem;
+  //margin-bottom: -0.5rem;
+  margin-top: calc(100vh - 250px);
 }
 
 .footer-logo {
index aad435f..d0094ab 100644 (file)
@@ -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");