@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.
- package/bundles/hmcts-ccpay-web-component.umd.js +4 -1
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/add-remission/add-remission.component.js +4 -1
- package/esm2015/lib/services/refunds/refunds.service.js +2 -2
- package/esm5/lib/components/add-remission/add-remission.component.js +4 -1
- package/esm5/lib/services/refunds/refunds.service.js +2 -2
- package/fesm2015/hmcts-ccpay-web-component.js +4 -1
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +4 -1
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 + "&
|
|
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
|
}
|