Skip to content

Commit

Permalink
Merge branch 'develop' into release/pluto_grid_export
Browse files Browse the repository at this point in the history
  • Loading branch information
bosskmk committed May 16, 2023
2 parents 7b3b8da + a949b05 commit 8e9a58d
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 8e9a58d

Please sign in to comment.