Skip to content

Commit a86c141

Browse files
committed
no need of open menu in handle input change
1 parent bc143d6 commit a86c141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-select/src/Select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ export default class Select extends Component<Props, State> {
10831083
const inputValue = event.currentTarget.value;
10841084
this.inputIsHiddenAfterUpdate = false;
10851085
this.onInputChange(inputValue, { action: 'input-change' });
1086-
this.onMenuOpen();
1086+
//this.onMenuOpen();
10871087
};
10881088
onInputFocus = (event: SyntheticFocusEvent<HTMLInputElement>) => {
10891089
const { isSearchable, isMulti } = this.props;

0 commit comments

Comments
 (0)