@hmcts/ccpay-web-component 5.0.1-beta166 → 5.0.1-beta167
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 +3 -3
- 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/service-request/service-request.component.js +4 -4
- package/esm5/lib/components/service-request/service-request.component.js +4 -4
- package/fesm2015/hmcts-ccpay-web-component.js +3 -3
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +3 -3
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -10592,13 +10592,13 @@ var ServiceRequestComponent = /** @class */ (function () {
|
|
|
10592
10592
|
*/
|
|
10593
10593
|
function (fee) {
|
|
10594
10594
|
if (!fee.issue_refund_add_refund_add_remission) {
|
|
10595
|
-
return
|
|
10595
|
+
return false;
|
|
10596
10596
|
}
|
|
10597
10597
|
else if (fee.remission_enable && fee.issue_refund_add_refund_add_remission) {
|
|
10598
|
-
return
|
|
10598
|
+
return true;
|
|
10599
10599
|
}
|
|
10600
10600
|
else {
|
|
10601
|
-
return
|
|
10601
|
+
return false;
|
|
10602
10602
|
}
|
|
10603
10603
|
};
|
|
10604
10604
|
/**
|