@esfaenza/core 15.2.185 → 15.2.187

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.
@@ -645,6 +645,9 @@ class Navbar extends ReactiveComponent {
645
645
  this.newVersionWarned = false;
646
646
  this._state.subscribe("menu.isCollapsed", (isCollapsed) => { this.isMenuCollapsed = isCollapsed; });
647
647
  this._state.subscribe("app.completedJob", (jobDescription) => {
648
+ // Ticket 30681: non ne voglio più sapere un cazzo
649
+ if (jobDescription == "null")
650
+ jobDescription = null;
648
651
  this.msgExts.simpleSuccess(this.lc.loc("Job Completato") + (jobDescription ? (": " + jobDescription) : ''), "toastr");
649
652
  this.cdr.markForCheck();
650
653
  });