fix timeline search with empty text box should do nothing (#8262)
* fix timeline search with empty text box should do nothing * test SearchBar component * fix lint error * Update SearchBar-test.tsx Co-authored-by: Travis Ralston <travisr@matrix.org>
This commit is contained in:
parent
cea75fde27
commit
d294dad04d
2 changed files with 135 additions and 0 deletions
|
@ -78,6 +78,7 @@ export default class SearchBar extends React.Component<IProps, IState> {
|
|||
}
|
||||
|
||||
private onSearch = (): void => {
|
||||
if (!this.searchTerm.current.value.trim()) return;
|
||||
this.props.onSearch(this.searchTerm.current.value, this.state.scope);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue