保留也挺好

This commit is contained in:
RickCole21 2020-08-21 17:36:30 +08:00
parent 44922dc56a
commit af9e7f75f9
1 changed files with 0 additions and 6 deletions

View File

@ -29,7 +29,6 @@ export default class DocSearch extends React.Component {
this.onOpen = this.onOpen.bind(this); this.onOpen = this.onOpen.bind(this);
this.onClose = this.onClose.bind(this); this.onClose = this.onClose.bind(this);
this.onEntered = this.onEntered.bind(this); this.onEntered = this.onEntered.bind(this);
this.onExited = this.onExited.bind(this);
this.clearValue = this.clearValue.bind(this); this.clearValue = this.clearValue.bind(this);
} }
@ -105,10 +104,6 @@ export default class DocSearch extends React.Component {
this.ref.current.focus(); this.ref.current.focus();
} }
onExited() {
this.setState({searchResults: []});
}
clearValue() { clearValue() {
this.setState( this.setState(
{ {
@ -136,7 +131,6 @@ export default class DocSearch extends React.Component {
closeOnOutside closeOnOutside
onHide={this.onClose} onHide={this.onClose}
onEntered={this.onEntered} onEntered={this.onEntered}
onExited={this.onExited}
show={this.state.show} show={this.state.show}
position={'right'} position={'right'}
> >