Allow float64 to down-cast to float32 (#472)

* warn if annotations will down-cast to float32

* correctly handle falsey data values
This commit is contained in:
Bruce Martin
2018-11-27 11:17:30 -08:00
committed by GitHub
parent 0c26f227fe
commit 933fac5fff
2 changed files with 4 additions and 2 deletions
@@ -34,7 +34,7 @@ class HistogramBrush extends React.Component {
.scaleLinear()
.range([this.height - this.marginBottom, 0]);
if (obsAnnotations[0][field]) {
if (obsAnnotations[0][field] !== undefined) {
// recalculate expensive stuff
const allValuesForContinuousFieldAsArray = _.map(obsAnnotations, field);