@esfaenza/core 15.2.54 → 15.2.55

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.
@@ -1350,6 +1350,7 @@ class AppState {
1350
1350
  }
1351
1351
  this.jobWithIdsCache[ev.instance] = job;
1352
1352
  this.allJobs.splice(0, 0, job);
1353
+ this.notifyDataChanged("app.startedJob", jobToUpdate.description);
1353
1354
  break;
1354
1355
  case "Progress":
1355
1356
  // Se mi arriva un progress di un job che non ho significa che mi sono loggato ora con dei Job in corso
@@ -1359,6 +1360,7 @@ class AppState {
1359
1360
  this.allJobs.splice(0, 0, job);
1360
1361
  }
1361
1362
  this.jobWithIdsCache[ev.instance].percentage = this.roundToTwo(ev.progress);
1363
+ this.notifyDataChanged("app.progressJob", { description: jobToUpdate.description, progress: jobToUpdate.percentage });
1362
1364
  break;
1363
1365
  case "Completed":
1364
1366
  if (!this.jobWithIdsCache[ev.instance]) {