@esfaenza/core 15.2.186 → 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.
@@ -1266,7 +1266,7 @@ class AppState {
1266
1266
  }
1267
1267
  setupSignalRJobListening() {
1268
1268
  this.notifications.observe(this.MessageDef.IN_JobProgressNotification).subscribe((ev) => {
1269
- var desc = ev.description + " (" + ev.user + ")";
1269
+ var desc = (ev.description || ev.actionid) + " (" + (ev.user || this.getJaceIDentity().DsUser) + ")";
1270
1270
  let job = {
1271
1271
  id: ev.instance,
1272
1272
  description: desc,