fix: don't show busted label for unknown data types (#14585)

This commit is contained in:
Evan Rusackas 2021-05-12 23:16:54 -07:00 committed by GitHub
parent 331eb10fb9
commit ad699e8b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -239,7 +239,7 @@ function ColumnCollectionTable({
) : (
v
),
type: d => <Label>{d}</Label>,
type: d => (d ? <Label>{d}</Label> : null),
is_dttm: checkboxGenerator,
filterable: checkboxGenerator,
groupby: checkboxGenerator,