diff --git a/client/src/components/brushableHistogram/index.js b/client/src/components/brushableHistogram/index.js
index fce92ddb..0be15c7c 100644
--- a/client/src/components/brushableHistogram/index.js
+++ b/client/src/components/brushableHistogram/index.js
@@ -465,6 +465,7 @@ class HistogramBrush extends React.PureComponent {
isScatterplotXXaccessor,
isScatterplotYYaccessor,
zebra,
+ ranges,
} = this.props;
const fieldForId = field.replace(/\s/g, "_");
const {
@@ -476,6 +477,8 @@ class HistogramBrush extends React.PureComponent {
const unclippedRangeMaxColor =
world.clipQuantiles.max === 1 ? "#bbb" : globals.blue;
+ const isSingleValue = ranges?.min === ranges?.max;
+
return (