Skip to content

Commit

Permalink
Merge branch 'RedRozio-master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bosskmk committed May 16, 2023
2 parents dcb46aa + 619534f commit a949b05
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/pluto_grid_export/lib/src/abstract_text_export.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ abstract class AbstractTextExport<T> {
// Order is important, so we iterate over columns
for (PlutoColumn column in visibleColumns(state)) {
dynamic value = plutoRow.cells[column.field]?.value;
serializedRow
.add(value != null ? column.formattedValueForDisplay(value) : null);
serializedRow.add(column.formattedValueForDisplay(value));
}

return serializedRow;
Expand Down

0 comments on commit a949b05

Please sign in to comment.