@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.
@@ -7400,25 +7400,25 @@
7400
7400
  function () {
7401
7401
  /** @type {?} */
7402
7402
  var creds = ( /** @type {?} */(this.remissionForm.controls.feesList));
7403
- if (creds.controls.length > 0) {
7404
- for (var i = 0; i < this.fees.length; i++) {
7405
- creds.push(this.formBuilder.group({
7406
- id: this.fees[i].id,
7407
- code: this.fees[i].code,
7408
- volume: this.fees[i].volume,
7409
- calculated_amount: this.fees[i].calculated_amount,
7410
- apportion_amount: this.fees[i].apportion_amount,
7411
- ccd_case_number: this.fees[i].ccd_case_number,
7412
- description: this.fees[i].description,
7413
- net_amount: this.fees[i].net_amount,
7414
- version: this.fees[i].version,
7415
- refund_amount: [''],
7416
- selected: [''],
7417
- updated_volume: this.fees[i].volume
7418
- }));
7419
- }
7420
- this.cd.detectChanges();
7403
+ // if(creds.controls.length > 0) {
7404
+ for (var i = 0; i < this.fees.length; i++) {
7405
+ creds.push(this.formBuilder.group({
7406
+ id: this.fees[i].id,
7407
+ code: this.fees[i].code,
7408
+ volume: this.fees[i].volume,
7409
+ calculated_amount: this.fees[i].calculated_amount,
7410
+ apportion_amount: this.fees[i].apportion_amount,
7411
+ ccd_case_number: this.fees[i].ccd_case_number,
7412
+ description: this.fees[i].description,
7413
+ net_amount: this.fees[i].net_amount,
7414
+ version: this.fees[i].version,
7415
+ refund_amount: [''],
7416
+ selected: [''],
7417
+ updated_volume: this.fees[i].volume
7418
+ }));
7421
7419
  }
7420
+ this.cd.detectChanges();
7421
+ //}
7422
7422
  };
7423
7423
  Object.defineProperty(AddRemissionComponent.prototype, "feesList", {
7424
7424
  get: /**