From c81b9c9d03af4959e748be7e95ea8417c5b19bfd Mon Sep 17 00:00:00 2001 From: DDiaz Date: Thu, 6 Apr 2017 10:37:15 -0400 Subject: [PATCH] Include a className of 'is-clearable' if clearable is true --- src/Select.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Select.js b/src/Select.js index 17b8f3b0ff..63383ac050 100644 --- a/src/Select.js +++ b/src/Select.js @@ -1079,6 +1079,7 @@ const Select = React.createClass({ let className = classNames('Select', this.props.className, { 'Select--multi': this.props.multi, 'Select--single': !this.props.multi, + 'is-clearable': this.props.clearable, 'is-disabled': this.props.disabled, 'is-focused': this.state.isFocused, 'is-loading': this.props.isLoading,