@hmcts/ccpay-web-component 5.0.2-beta3 → 5.0.2-beta4
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 +5 -5
- 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/case-transactions/case-transactions.component.js +6 -6
- package/esm5/lib/components/case-transactions/case-transactions.component.js +6 -6
- package/fesm2015/hmcts-ccpay-web-component.js +5 -5
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +5 -5
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/package.json +1 -1
|
@@ -3328,7 +3328,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3328
3328
|
* @return {?}
|
|
3329
3329
|
*/
|
|
3330
3330
|
function (error) {
|
|
3331
|
-
_this.errorMessage = (/** @type {?} */ (error.replace(/"/g, "")
|
|
3331
|
+
_this.errorMessage = (/** @type {?} */ (error)) ? error.replace(/"/g, "") : "";
|
|
3332
3332
|
_this.isCPODown = true;
|
|
3333
3333
|
}));
|
|
3334
3334
|
}
|
|
@@ -3337,7 +3337,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3337
3337
|
* @return {?}
|
|
3338
3338
|
*/
|
|
3339
3339
|
function (error) {
|
|
3340
|
-
_this.errorMessage = (/** @type {?} */ (error.replace(/"/g, "")
|
|
3340
|
+
_this.errorMessage = (/** @type {?} */ (error)) ? error.replace(/"/g, "") : "";
|
|
3341
3341
|
_this.isAnyFeeGroupAvilable = false;
|
|
3342
3342
|
_this.setDefaults();
|
|
3343
3343
|
}));
|
|
@@ -3364,7 +3364,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3364
3364
|
* @return {?}
|
|
3365
3365
|
*/
|
|
3366
3366
|
function (error) {
|
|
3367
|
-
_this.errorMessage = (/** @type {?} */ (error.replace(/"/g, "")
|
|
3367
|
+
_this.errorMessage = (/** @type {?} */ (error)) ? error.replace(/"/g, "") : "";
|
|
3368
3368
|
_this.setDefaults();
|
|
3369
3369
|
_this.isCPODown = true;
|
|
3370
3370
|
}));
|
|
@@ -3373,7 +3373,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3373
3373
|
* @return {?}
|
|
3374
3374
|
*/
|
|
3375
3375
|
function (error) {
|
|
3376
|
-
_this.errorMessage = (/** @type {?} */ (error.replace(/"/g, "")
|
|
3376
|
+
_this.errorMessage = (/** @type {?} */ (error)) ? error.replace(/"/g, "") : "";
|
|
3377
3377
|
_this.isAnyFeeGroupAvilable = false;
|
|
3378
3378
|
_this.setDefaults();
|
|
3379
3379
|
}));
|
|
@@ -3992,7 +3992,7 @@ var CaseTransactionsComponent = /** @class */ (function () {
|
|
|
3992
3992
|
* @param {?} error
|
|
3993
3993
|
* @return {?}
|
|
3994
3994
|
*/
|
|
3995
|
-
function (error) { return _this.errorMessage = error.replace(/"/g, ""); }));
|
|
3995
|
+
function (error) { return _this.errorMessage = error ? error.replace(/"/g, "") : ""; }));
|
|
3996
3996
|
}
|
|
3997
3997
|
};
|
|
3998
3998
|
/**
|