From f792671ae247a931f34d902e9276202b5016ef9a Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Sun, 7 Jul 2019 19:23:03 +0300 Subject: Merge from ecomp 718fd196 - Modern UI Issue-ID: VID-378 Change-Id: I2736b98426e324ec3aa233b034229ba84d99839f Signed-off-by: Ittay Stern --- .../src/app/shared/resolvers/viewEdit/viewEdit.resolver.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vid-webpack-master/src/app/shared/resolvers/viewEdit') diff --git a/vid-webpack-master/src/app/shared/resolvers/viewEdit/viewEdit.resolver.ts b/vid-webpack-master/src/app/shared/resolvers/viewEdit/viewEdit.resolver.ts index d4aef1937..404f390fb 100644 --- a/vid-webpack-master/src/app/shared/resolvers/viewEdit/viewEdit.resolver.ts +++ b/vid-webpack-master/src/app/shared/resolvers/viewEdit/viewEdit.resolver.ts @@ -21,7 +21,7 @@ export class ViewEditResolver implements Resolve> { let serviceModelApi = this._aaiService.getServiceModelById(serviceModeId); let serviceInstanceApi = this._aaiService.retrieveAndStoreServiceInstanceTopology(serviceInstanceId, subscriberId, serviceType, serviceModeId); return forkJoin([serviceModelApi, serviceInstanceApi]).map(([serviceModel, serviceInstance ]) => { - this.setIsALaCarte(serviceInstance,serviceModel.service.instantiationType ); + this.setIsALaCarte(serviceInstance,serviceModel.service.vidNotions.instantiationType ); this.setTestApi(serviceInstance); this._store.dispatch(createServiceInstance( serviceInstance, serviceModeId)); return true; @@ -34,7 +34,7 @@ export class ViewEditResolver implements Resolve> { } }; setIsALaCarte = (service: any, instantiationType) => { - service.isALaCarte = instantiationType === 'A-La-Carte'; + service.isALaCarte = instantiationType === 'ALaCarte'; }; } -- cgit 1.2.3-korg