@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.
@@ -6582,25 +6582,25 @@ class AddRemissionComponent {
6582
6582
  refundFeesList() {
6583
6583
  /** @type {?} */
6584
6584
  const creds = (/** @type {?} */ (this.remissionForm.controls.feesList));
6585
- if (creds.controls.length > 0) {
6586
- for (var i = 0; i < this.fees.length; i++) {
6587
- creds.push(this.formBuilder.group({
6588
- id: this.fees[i].id,
6589
- code: this.fees[i].code,
6590
- volume: this.fees[i].volume,
6591
- calculated_amount: this.fees[i].calculated_amount,
6592
- apportion_amount: this.fees[i].apportion_amount,
6593
- ccd_case_number: this.fees[i].ccd_case_number,
6594
- description: this.fees[i].description,
6595
- net_amount: this.fees[i].net_amount,
6596
- version: this.fees[i].version,
6597
- refund_amount: [''],
6598
- selected: [''],
6599
- updated_volume: this.fees[i].volume
6600
- }));
6601
- }
6602
- this.cd.detectChanges();
6585
+ // if(creds.controls.length > 0) {
6586
+ for (var i = 0; i < this.fees.length; i++) {
6587
+ creds.push(this.formBuilder.group({
6588
+ id: this.fees[i].id,
6589
+ code: this.fees[i].code,
6590
+ volume: this.fees[i].volume,
6591
+ calculated_amount: this.fees[i].calculated_amount,
6592
+ apportion_amount: this.fees[i].apportion_amount,
6593
+ ccd_case_number: this.fees[i].ccd_case_number,
6594
+ description: this.fees[i].description,
6595
+ net_amount: this.fees[i].net_amount,
6596
+ version: this.fees[i].version,
6597
+ refund_amount: [''],
6598
+ selected: [''],
6599
+ updated_volume: this.fees[i].volume
6600
+ }));
6603
6601
  }
6602
+ this.cd.detectChanges();
6603
+ //}
6604
6604
  }
6605
6605
  /**
6606
6606
  * @return {?}