diff --git a/src/Select.js b/src/Select.js index ee8cda6fd1..a4501cc169 100644 --- a/src/Select.js +++ b/src/Select.js @@ -902,7 +902,7 @@ const Select = React.createClass({ renderClear () { - if (!this.props.clearable || this.props.value == null || this.props.multi && !this.props.value.length || this.props.disabled || this.props.isLoading) return; + if (!this.props.clearable || this.props.value === undefined || this.props.value === null || this.props.multi && !this.props.value.length || this.props.disabled || this.props.isLoading) return; const clear = this.props.clearRenderer(); return (