diff --git a/src/Typeahead.react.js b/src/Typeahead.react.js index 2e113d2b..92a81e54 100644 --- a/src/Typeahead.react.js +++ b/src/Typeahead.react.js @@ -163,12 +163,14 @@ const Typeahead = React.createClass({ * and selection(s). */ clear() { + const {activeIndex, showMenu} = this.getInitialState(); const selected = []; const text = ''; this.setState({ - ...this.getInitialState(), + activeIndex, selected, + showMenu, text, });