|
|
|
@ -218,6 +218,9 @@ class Boards extends Component{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onPressEnter = (e) => {
|
|
|
|
|
clearTimeout(this.timeoutHandler)
|
|
|
|
|
this.timeoutHandler = null;
|
|
|
|
|
|
|
|
|
|
this.fetchAll(this.state.searchValue, 1)
|
|
|
|
|
}
|
|
|
|
|
onInputSearchChange = (e) => {
|
|
|
|
@ -227,6 +230,7 @@ class Boards extends Component{
|
|
|
|
|
|
|
|
|
|
if (this.timeoutHandler) {
|
|
|
|
|
clearTimeout(this.timeoutHandler)
|
|
|
|
|
this.timeoutHandler = null;
|
|
|
|
|
}
|
|
|
|
|
this.timeoutHandler = setTimeout(() => {
|
|
|
|
|
this.fetchAll(this.state.searchValue, 1)
|
|
|
|
|