@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.
@@ -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' ? null : this.statusCode;
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"];