@hmcts/ccpay-web-component 4.0.0-beta602 → 4.0.0-beta603

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.
@@ -1574,7 +1574,7 @@
1574
1574
  * @return {?}
1575
1575
  */
1576
1576
  function (refundstatus, selfexclusive) {
1577
- return this.http.get(this.paymentLibService.REFUNDS_API_ROOT + "?status=" + refundstatus + "&selfExclusive=" + selfexclusive, {
1577
+ return this.http.get(this.paymentLibService.REFUNDS_API_ROOT + "?status=" + refundstatus + "&excludeCurrentUser=" + selfexclusive, {
1578
1578
  withCredentials: true
1579
1579
  })
1580
1580
  .pipe(operators.catchError(this.errorHandlerService.handleError));
@@ -6260,6 +6260,9 @@
6260
6260
  refundDDReason: new forms.FormControl('', forms.Validators.compose([forms.Validators.required])),
6261
6261
  reason: new forms.FormControl()
6262
6262
  });
6263
+ /** @type {?} */
6264
+ var remissionctrls = this.remissionForm.controls;
6265
+ remissionctrls['refundDDReason'].setValue('Select a different reason', { onlySelf: true });
6263
6266
  if (this.viewCompStatus === '') {
6264
6267
  this.viewStatus = 'main';
6265
6268
  }