@esfaenza/core 15.2.187 → 15.2.188

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.
@@ -1271,7 +1271,7 @@ class AppState {
1271
1271
  }
1272
1272
  setupSignalRJobListening() {
1273
1273
  this.notifications.observe(this.MessageDef.IN_JobProgressNotification).subscribe((ev) => {
1274
- var desc = ev.description + " (" + ev.user + ")";
1274
+ var desc = (ev.description || ev.actionid) + " (" + (ev.user || this.getJaceIDentity().DsUser) + ")";
1275
1275
  let job = {
1276
1276
  id: ev.instance,
1277
1277
  description: desc,