fix: leave an empty string when there's no value for a column
This commit is contained in:
parent
f9be68f98a
commit
18e5a593e3
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ const ECol = ({
|
||||||
textAlign,
|
textAlign,
|
||||||
suffix,
|
suffix,
|
||||||
SuffixComponent = TL2,
|
SuffixComponent = TL2,
|
||||||
view = it => (!it ? '-' : it.toString()),
|
view = it => it?.toString(),
|
||||||
inputProps = {}
|
inputProps = {}
|
||||||
} = config
|
} = config
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue