@esfaenza/core 15.2.72 → 15.2.73

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.
@@ -555,7 +555,7 @@ class Navbar extends ReactiveComponent {
555
555
  this.searchingTerm = false;
556
556
  this._state.subscribe("menu.isCollapsed", (isCollapsed) => { this.isMenuCollapsed = isCollapsed; });
557
557
  this._state.subscribe("app.completedJob", (jobDescription) => {
558
- this.msgExts.simpleSuccess(this.lc.loc("Job Completato") + jobDescription ? (": " + jobDescription) : '', "toastr");
558
+ this.msgExts.simpleSuccess(this.lc.loc("Job Completato") + (jobDescription ? (": " + jobDescription) : ''), "toastr");
559
559
  this.cdr.markForCheck();
560
560
  });
561
561
  this._state.subscribe("app.startedJob", (_) => { this.cdr.markForCheck(); });