@softheon/armature 19.18.0 → 19.18.1

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.
@@ -10424,7 +10424,10 @@ class EntityBaseComponent {
10424
10424
  this.entityHelper = entityHelper;
10425
10425
  /** True if is expanded */
10426
10426
  this.isExpanded = false;
10427
- document.addEventListener('task-row-click', this.taskRowClick);
10427
+ this.boundTaskRowClick = (event) => {
10428
+ this.taskRowClick(event);
10429
+ };
10430
+ document.addEventListener('task-row-click', this.boundTaskRowClick);
10428
10431
  }
10429
10432
  /** Life cycle hook for component initialization */
10430
10433
  ngOnInit() {
@@ -10433,7 +10436,7 @@ class EntityBaseComponent {
10433
10436
  }
10434
10437
  /** Life cycle hook for component destruction */
10435
10438
  ngOnDestroy() {
10436
- document.removeEventListener('task-row-click', this.taskRowClick);
10439
+ document.removeEventListener('task-row-click', this.boundTaskRowClick);
10437
10440
  }
10438
10441
  /** Navigate back to list view */
10439
10442
  returnToQueueView() {