diff --git a/src/BootstrapTable.js b/src/BootstrapTable.js index eabdb7cc2..392e46fa8 100644 --- a/src/BootstrapTable.js +++ b/src/BootstrapTable.js @@ -628,6 +628,7 @@ class BootstrapTable extends Component {
{ + const delay = this.props.searchDelayTime ? this.props.searchDelayTime : 0; this.handleDebounce(() => { this.props.onSearch(this.refs.seachInput.value); }, - 500 + delay )(); }