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

This commit is contained in:
Sam Firke
2025-04-25 11:25:50 -04:00
committed by GitHub
parent 6a586fe4fd
commit ac636c73ae

View File

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