@esfaenza/core 19.2.189 → 19.2.191
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/fesm2022/esfaenza-core-components.mjs +1 -1
- package/fesm2022/esfaenza-core-components.mjs.map +1 -1
- package/fesm2022/esfaenza-core-services.mjs +14 -4
- package/fesm2022/esfaenza-core-services.mjs.map +1 -1
- package/fesm2022/esfaenza-core.mjs +2 -2
- package/fesm2022/esfaenza-core.mjs.map +1 -1
- package/package.json +5 -5
- package/services/classes/app.errorhandler.d.ts +1 -0
|
@@ -227,7 +227,7 @@ class ErrorPageComponent {
|
|
|
227
227
|
let identity = this.bts.getJaceIdentity();
|
|
228
228
|
this.debugging = identity.Roles.some(t => t == "Jace Admin");
|
|
229
229
|
this.statusCode = this.route.snapshot.params["statusCode"];
|
|
230
|
-
this.statusCode = this.statusCode == '9999' ?
|
|
230
|
+
this.statusCode = this.statusCode == '9999' ? "Javascript Error" : this.statusCode;
|
|
231
231
|
this.statusText = this.b64DecodeUnicode(this.route.snapshot.params["statusText"]);
|
|
232
232
|
this.errorMessage = this.b64DecodeUnicode(this.route.snapshot.params["errorMessage"]);
|
|
233
233
|
this.previousUrl = this.route.snapshot.params["fromUrl"];
|