diff --git a/src/app/shared/forms/offer/offer.component.ts b/src/app/shared/forms/offer/offer.component.ts index de1b61ad..09fe3936 100644 --- a/src/app/shared/forms/offer/offer.component.ts +++ b/src/app/shared/forms/offer/offer.component.ts @@ -458,6 +458,7 @@ export class OfferComponent implements OnInit, OnDestroy{ console.log(component) let priceComp: ProductOfferingPrice = { name: component.name, + isBundle: false, description: component.description ?? component?.newValue.description, lifecycleStatus: component?.lifecycleStatus ?? component?.newValue?.lifecycleStatus ?? 'Active', priceType: component.priceType ?? component?.newValue?.priceType, @@ -515,6 +516,7 @@ export class OfferComponent implements OnInit, OnDestroy{ console.log('------') let priceComp: ProductOfferingPrice = { name: component.newValue.name, + isBundle: false, description: component.newValue.description, lifecycleStatus: component.newValue.lifecycleStatus, priceType: component.newValue.priceType,