diff options
author | Eylon Malin <eylon.malin@intl.att.com> | 2019-11-13 15:54:35 +0200 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-11-13 15:19:12 +0000 |
commit | 5c775c02cbb1abe27a0dc7dafa02db7e015e9924 (patch) | |
tree | ee880add850329d4d6281289cc2410277876fed5 | |
parent | a0c5b4a55c6ea58ecf2ebc2ccbc801558989b856 (diff) |
isALaCarte in modern UI is false only if instantiationType is Macro
Issue-ID: VID-701
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Change-Id: Ie75b1717ffbc856f0c46de954e70b1e047f3cffb
-rw-r--r-- | vid-webpack-master/src/app/shared/components/genericFormPopup/genericFormServices/service/service.popup.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-webpack-master/src/app/shared/components/genericFormPopup/genericFormServices/service/service.popup.service.ts b/vid-webpack-master/src/app/shared/components/genericFormPopup/genericFormServices/service/service.popup.service.ts index 7694e6314..3fd44974a 100644 --- a/vid-webpack-master/src/app/shared/components/genericFormPopup/genericFormServices/service/service.popup.service.ts +++ b/vid-webpack-master/src/app/shared/components/genericFormPopup/genericFormServices/service/service.popup.service.ts @@ -169,7 +169,7 @@ export class ServicePopupService implements GenericPopupInterface { }; setIsALaCarte = (formValues: any, instantiationType) => { - formValues.isALaCarte = instantiationType === 'ALaCarte'; + formValues.isALaCarte = instantiationType !== 'Macro'; }; setTestApi = (formValues: any) =>{ |