diff --git a/src/Select.js b/src/Select.js index bfeefc7554..f9d21911a2 100644 --- a/src/Select.js +++ b/src/Select.js @@ -709,7 +709,7 @@ const Select = React.createClass({ this.setState({ isOpen: true, inputValue: '', - focusedOption: this._focusedOption || options[dir === 'next' ? 0 : options.length - 1].option + focusedOption: this._focusedOption || options.length ? options[dir === 'next' ? 0 : options.length - 1].option : null }); return; }