From c81b9c9d03af4959e748be7e95ea8417c5b19bfd Mon Sep 17 00:00:00 2001 From: DDiaz Date: Thu, 6 Apr 2017 10:37:15 -0400 Subject: [PATCH 1/2] 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, From 75d6372e4b549677c96d0e660d4f72fac46d407c Mon Sep 17 00:00:00 2001 From: DDiaz Date: Thu, 6 Apr 2017 10:39:10 -0400 Subject: [PATCH 2/2] spaces to tabs --- src/Select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Select.js b/src/Select.js index 63383ac050..33e29b37bf 100644 --- a/src/Select.js +++ b/src/Select.js @@ -1079,7 +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-clearable': this.props.clearable, 'is-disabled': this.props.disabled, 'is-focused': this.state.isFocused, 'is-loading': this.props.isLoading,