mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix(heatmap): correctly render int and boolean falsy values on axes (#33238)
This commit is contained in:
@@ -150,7 +150,7 @@ export default function transformProps(
|
||||
data: data.map(row =>
|
||||
colnames.map(col => {
|
||||
const value = row[col];
|
||||
if (!value) {
|
||||
if (value === null || value === undefined) {
|
||||
return NULL_STRING;
|
||||
}
|
||||
if (typeof value === 'boolean' || typeof value === 'bigint') {
|
||||
|
||||
Reference in New Issue
Block a user