diff --git a/package.json b/package.json index 42f6c282..8ce49d28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-bootstrap-typeahead", - "version": "0.6.3", + "version": "0.6.4", "description": "React-based typeahead using the Bootstrap theme", "main": "lib/index.js", "directories": { diff --git a/src/Typeahead.react.js b/src/Typeahead.react.js index 28eb4c12..96e7d2e8 100644 --- a/src/Typeahead.react.js +++ b/src/Typeahead.react.js @@ -243,7 +243,8 @@ const Typeahead = React.createClass({ }, _handleBlur(e) { - this._hideDropdown(); + // Note: Don't hide the menu here, since that interferes with other actions + // like making a selection by clicking on a menu item. this.props.onBlur && this.props.onBlur(e); },