Skip to content

Commit

Permalink
fix: avoid returning nulls to prevent later NPE
Browse files Browse the repository at this point in the history
Fixes #163
  • Loading branch information
mlopezFC committed Nov 28, 2024
1 parent 8f5767b commit 638eeb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private String renderCellTextContent(Grid<T> grid, Column<T> column, String colu
}
}

return headerOrFooter;
return headerOrFooter==null?"":headerOrFooter;
}

protected Stream<T> obtainDataStream(DataProvider<T, ?> dataProvider) {
Expand Down

0 comments on commit 638eeb8

Please sign in to comment.