@punks/backend-entity-manager 0.0.376 → 0.0.377

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.
package/dist/esm/index.js CHANGED
@@ -402,7 +402,12 @@ class EntitySerializer {
402
402
  },
403
403
  ...definition.columns.map((c) => ({
404
404
  header: c.name,
405
- value: (item) => this.getColumnValue(item, c),
405
+ value: (item) => {
406
+ const value = this.getColumnValue(item, c);
407
+ return c.array
408
+ ? joinArrayColumn(value, c.arraySeparator)
409
+ : value;
410
+ },
406
411
  headerSize: c.colSpan,
407
412
  })),
408
413
  ],