fix(heatmap): correctly render int and boolean falsy values on axes (#33238)

(cherry picked from commit ac636c73ae)
This commit is contained in:
Sam Firke
2025-04-25 11:25:50 -04:00
committed by Michael S. Molina
parent a3c08fd9bf
commit a6895e07b0

View File

@@ -145,7 +145,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') {