Allow negative values for both gauge and single-stat thresholds
parent
d595f8eaa8
commit
739a661d5a
|
@ -155,7 +155,7 @@ class CellEditorOverlay extends Component {
|
||||||
// If type === min, make sure it is less than the next threshold
|
// If type === min, make sure it is less than the next threshold
|
||||||
if (threshold.type === COLOR_TYPE_MIN) {
|
if (threshold.type === COLOR_TYPE_MIN) {
|
||||||
const nextValue = Number(sortedColors[1].value)
|
const nextValue = Number(sortedColors[1].value)
|
||||||
allowedToUpdate = targetValueNumber < nextValue && targetValueNumber >= 0
|
allowedToUpdate = targetValueNumber < nextValue
|
||||||
}
|
}
|
||||||
// If type === max, make sure it is greater than the previous threshold
|
// If type === max, make sure it is greater than the previous threshold
|
||||||
if (threshold.type === COLOR_TYPE_MAX) {
|
if (threshold.type === COLOR_TYPE_MAX) {
|
||||||
|
|
|
@ -87,7 +87,6 @@ class Threshold extends Component {
|
||||||
type="number"
|
type="number"
|
||||||
onChange={this.handleChangeWorkingValue}
|
onChange={this.handleChangeWorkingValue}
|
||||||
onBlur={this.handleBlur}
|
onBlur={this.handleBlur}
|
||||||
min={0}
|
|
||||||
/>
|
/>
|
||||||
<ColorDropdown
|
<ColorDropdown
|
||||||
colors={GAUGE_COLORS}
|
colors={GAUGE_COLORS}
|
||||||
|
|
Loading…
Reference in New Issue