fix: leave an empty string when there's no value for a column

This commit is contained in:
Liordino Neto 2020-10-09 16:45:52 -03:00 committed by Josh Harvey
parent f9be68f98a
commit 18e5a593e3

View file

@ -103,7 +103,7 @@ const ECol = ({
textAlign,
suffix,
SuffixComponent = TL2,
view = it => (!it ? '-' : it.toString()),
view = it => it?.toString(),
inputProps = {}
} = config