@trudb/tru-common-lib 0.2.540 → 0.2.542

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.
@@ -6293,7 +6293,8 @@ class TruCardColumn {
6293
6293
  }
6294
6294
  if (this.inactiveVisible)
6295
6295
  columns = columns.concat(inactiveWithParent);
6296
- columns = columns.concat([...new Map(emptyParents.map(emptyParent => [emptyParent.Ref, emptyParent])).values()]);
6296
+ columns = columns.filter(column => !emptyParents.some(emptyParent => column.Ref === emptyParent.Ref));
6297
+ columns = columns.concat(emptyParents);
6297
6298
  if (this.unassignedVisible && !this.unassignedLocked)
6298
6299
  columns = columns.concat(activeWithoutParent);
6299
6300
  if (this.unassignedVisible && this.unassignedLocked)