mirror of
https://github.com/apache/superset.git
synced 2026-04-07 10:31:50 +00:00
fix: don't show busted label for unknown data types (#14585)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user