sfirke opened a new pull request, #33238: URL: https://github.com/apache/superset/pull/33238
### SUMMARY Currently values of 0 and false on a heatmap axis render as `<NULL>`. This fixes that. ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF **BEFORE**   **AFTER**   ### TESTING INSTRUCTIONS Create a new dataset in SQL Lab like this and make a heatmap. ``` SELECT column1 as foo, column2 as bar, column3::boolean as is_active FROM (VALUES (0, 0, 't'), (1, 1, 'f'), (2, 2, 't'), (1, 0, 'f'), (0, 2, 't'), (2, 2, 'f') ) as t(column1, column2, column3); ``` ### ADDITIONAL INFORMATION <!--- Check any relevant boxes with "x" --> <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> - [x] Has associated issue: #33105 - that is a two-part issue, this fixes one problem -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
