[#1512] Update searchbar to query with empty term

This commit is contained in:
Cassie Tarakajian 2020-07-27 18:11:18 -04:00
parent dab1e5334e
commit 9470fd12ff
1 changed files with 1 additions and 7 deletions

View File

@ -30,18 +30,12 @@ class Searchbar extends React.Component {
}
searchChange = () => {
if (this.state.searchValue.trim().length === 0) return;
this.props.setSearchTerm(this.state.searchValue.trim());
};
handleSearchChange = (e) => {
if (e.target.value === '') {
// Manually reset the searchValue if the search field becomes empty.
this.handleResetSearch();
return;
}
this.setState({ searchValue: e.target.value }, () => {
this.throttledSearchChange(this.state.searchValue);
this.throttledSearchChange(this.state.searchValue.trim());
});
}