Skip to content

Commit a6d45d2

Browse files
Undo change on clear button
1 parent 6c44183 commit a6d45d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Typeahead.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ export default class Typeahead extends PureComponent<Props, State> {
670670
renderClearButton(): Node {
671671
if (this.props.isClearable && !this.props.isDisabled && this.state.value) {
672672
return (
673-
<button tabIndex={-1} className="typeahead__clear" onClick={this._handleClearClick}/>
673+
<button className="typeahead__clear" onClick={this._handleClearClick}/>
674674
);
675675
}
676676
}

0 commit comments

Comments
 (0)