@hmcts/ccpay-web-component 5.0.7-beta03 → 5.0.7-beta04
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 -0
- 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/reports/reports.component.js +4 -1
- package/esm5/lib/components/reports/reports.component.js +4 -1
- package/fesm2015/hmcts-ccpay-web-component.js +3 -0
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +3 -0
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -8224,6 +8224,9 @@
|
|
|
8224
8224
|
if (res['data'][i]["disputed_amount"] !== undefined) {
|
|
8225
8225
|
res['data'][i]['disputed_amount'] = _this.convertToFloatValue(res['data'][i]["disputed_amount"]);
|
|
8226
8226
|
}
|
|
8227
|
+
if (res['data'][i]["representment_status"] !== undefined) {
|
|
8228
|
+
res['data'][i]['representment_status'] = res['data'][i]["representment_status"].toLowerCase() === 'yes' ? 'Success' : 'Failure';
|
|
8229
|
+
}
|
|
8227
8230
|
}
|
|
8228
8231
|
}
|
|
8229
8232
|
_this.isDownLoadButtondisabled = false;
|