From 7f36a4044a073b48f905d2f2d252ba69f83f75e1 Mon Sep 17 00:00:00 2001 From: dehnel Date: Mon, 28 Aug 2017 21:36:32 -0500 Subject: [PATCH] Adjusted rtl classname to be modifier --- src/Select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Select.js b/src/Select.js index 7130bdbebd..d2dfbcfc78 100644 --- a/src/Select.js +++ b/src/Select.js @@ -1082,6 +1082,7 @@ const Select = createClass({ let className = classNames('Select', this.props.className, { 'Select--multi': this.props.multi, 'Select--single': !this.props.multi, + 'Select--rtl': this.props.rtl, 'is-clearable': this.props.clearable, 'is-disabled': this.props.disabled, 'is-focused': this.state.isFocused, @@ -1090,7 +1091,6 @@ const Select = createClass({ 'is-pseudo-focused': this.state.isPseudoFocused, 'is-searchable': this.props.searchable, 'has-value': valueArray.length, - 'Select-rtl': this.props.rtl, }); let removeMessage = null;