filter lookups improvements

This commit is contained in:
Jan Prochazka
2021-11-20 11:50:59 +01:00
parent 6f7452ab6d
commit f010e7c934
4 changed files with 8 additions and 5 deletions

View File

@@ -151,7 +151,7 @@
{
fieldName: 'value',
header: 'Value',
formatter: row => row[columnName],
formatter: row => (row[columnName] == null ? '(NULL)' : row[columnName]),
},
]}
>