@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.
- package/esm2020/components/navbar/navbar.component.mjs +4 -1
- package/esm2020/lib/app.component.mjs +2 -2
- package/fesm2015/esfaenza-core-components.mjs +3 -0
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +3 -0
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
});
|