X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Fservices%2Fapp-mgr%2Fapp-mgr.service.ts;fp=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Fservices%2Fapp-mgr%2Fapp-mgr.service.ts;h=bddf690c073349277873d71f3de376f32b21a946;hb=5447254cb207353b33e6a444cce8a7fd84cfd34a;hp=5d89ce467cde1493910a848f231d65f77484e2cf;hpb=854af18c26835319712aded05fdc3624502314a4;p=portal%2Fric-dashboard.git diff --git a/dashboard/webapp-frontend/src/app/services/app-mgr/app-mgr.service.ts b/dashboard/webapp-frontend/src/app/services/app-mgr/app-mgr.service.ts index 5d89ce46..bddf690c 100644 --- a/dashboard/webapp-frontend/src/app/services/app-mgr/app-mgr.service.ts +++ b/dashboard/webapp-frontend/src/app/services/app-mgr/app-mgr.service.ts @@ -45,8 +45,7 @@ export class AppMgrService { return this.httpClient.get(path); } - deployXapp(instanceKey: string, xappName: string): Observable> { - const xappDescriptor: XMXappDescriptor = { xappName: xappName }; + deployXapp(instanceKey: string, xappDescriptor: XMXappDescriptor): Observable> { const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath); return this.httpClient.post(path, xappDescriptor, { observe: 'response' }); }