@seniorsistemas/angular-components 14.16.30 → 14.16.31

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.
@@ -2916,7 +2916,10 @@
2916
2916
  var cellData;
2917
2917
  if (Array.isArray(column.field)) {
2918
2918
  var fieldValues = column.field.map(function (col) { return _this.resolveFieldData(record, col); });
2919
- cellData = fieldValues.flat().join(column.separator);
2919
+ cellData = fieldValues
2920
+ .flat()
2921
+ .filter(function (value) { return value !== null && value !== undefined; })
2922
+ .join(column.separator);
2920
2923
  }
2921
2924
  else {
2922
2925
  cellData = _this.resolveFieldData(record, column.field);