@hmcts/ccpay-web-component 5.0.2-beta58 → 5.0.2-beta59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7515,25 +7515,25 @@ var AddRemissionComponent = /** @class */ (function () {
7515
7515
  function () {
7516
7516
  /** @type {?} */
7517
7517
  var creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
7518
- if (creds.controls.length > 0) {
7519
- for (var i = 0; i < this.fees.length; i++) {
7520
- creds.push(this.formBuilder.group({
7521
- id: this.fees[i].id,
7522
- code: this.fees[i].code,
7523
- volume: this.fees[i].volume,
7524
- calculated_amount: this.fees[i].calculated_amount,
7525
- apportion_amount: this.fees[i].apportion_amount,
7526
- ccd_case_number: this.fees[i].ccd_case_number,
7527
- description: this.fees[i].description,
7528
- net_amount: this.fees[i].net_amount,
7529
- version: this.fees[i].version,
7530
- refund_amount: [''],
7531
- selected: [''],
7532
- updated_volume: this.fees[i].volume
7533
- }));
7534
- }
7535
- this.cd.detectChanges();
7518
+ // if(creds.controls.length > 0) {
7519
+ for (var i = 0; i < this.fees.length; i++) {
7520
+ creds.push(this.formBuilder.group({
7521
+ id: this.fees[i].id,
7522
+ code: this.fees[i].code,
7523
+ volume: this.fees[i].volume,
7524
+ calculated_amount: this.fees[i].calculated_amount,
7525
+ apportion_amount: this.fees[i].apportion_amount,
7526
+ ccd_case_number: this.fees[i].ccd_case_number,
7527
+ description: this.fees[i].description,
7528
+ net_amount: this.fees[i].net_amount,
7529
+ version: this.fees[i].version,
7530
+ refund_amount: [''],
7531
+ selected: [''],
7532
+ updated_volume: this.fees[i].volume
7533
+ }));
7536
7534
  }
7535
+ this.cd.detectChanges();
7536
+ //}
7537
7537
  };
7538
7538
  Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
7539
7539
  get: /**