@hmcts/ccpay-web-component 5.2.4 → 5.2.5
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 +2 -2
- 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/unprocessed-payments/unprocessed-payments.component.js +3 -3
- package/fesm2015/hmcts-ccpay-web-component.js +2 -2
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -4251,11 +4251,11 @@
|
|
|
4251
4251
|
if (this.isUnprocessedRecordSelected && this.isExceptionCase) {
|
|
4252
4252
|
this.isMarkAsUnidentifiedbtnEnabled = true;
|
|
4253
4253
|
}
|
|
4254
|
-
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {
|
|
4254
|
+
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS !== null && !this.FEE_RECORDS_EXISTS) {
|
|
4255
4255
|
this.isAllocateToExistingFeebtnEnabled = false;
|
|
4256
4256
|
this.isAllocatedToNewFeebtnEnabled = true;
|
|
4257
4257
|
}
|
|
4258
|
-
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS) {
|
|
4258
|
+
else if (this.isUnprocessedRecordSelected && !this.isExceptionCase && (this.FEE_RECORDS_EXISTS === null || this.FEE_RECORDS_EXISTS)) {
|
|
4259
4259
|
if (!this.ISTURNOFF) {
|
|
4260
4260
|
this.isAllocateToExistingFeebtnEnabled = true;
|
|
4261
4261
|
this.isAllocatedToNewFeebtnEnabled = false;
|