@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
|
@@ -8349,6 +8349,9 @@ var ReportsComponent = /** @class */ (function () {
|
|
|
8349
8349
|
if (res['data'][i]["disputed_amount"] !== undefined) {
|
|
8350
8350
|
res['data'][i]['disputed_amount'] = _this.convertToFloatValue(res['data'][i]["disputed_amount"]);
|
|
8351
8351
|
}
|
|
8352
|
+
if (res['data'][i]["representment_status"] !== undefined) {
|
|
8353
|
+
res['data'][i]['representment_status'] = res['data'][i]["representment_status"].toLowerCase() === 'yes' ? 'Success' : 'Failure';
|
|
8354
|
+
}
|
|
8352
8355
|
}
|
|
8353
8356
|
}
|
|
8354
8357
|
_this.isDownLoadButtondisabled = false;
|