Merge branch 'fix-empty-search' of https://github.com/darnfish/social-app into darnfish-fix-empty-search
commit
17fcc2f25c
|
@ -79,6 +79,8 @@ export const SearchScreen = withAuthRequired(
|
||||||
}, [setQuery, autocompleteView, store])
|
}, [setQuery, autocompleteView, store])
|
||||||
|
|
||||||
const onSubmitQuery = React.useCallback(() => {
|
const onSubmitQuery = React.useCallback(() => {
|
||||||
|
if (query.length === 0) return
|
||||||
|
|
||||||
const model = new SearchUIModel(store)
|
const model = new SearchUIModel(store)
|
||||||
model.fetch(query)
|
model.fetch(query)
|
||||||
setSearchUIModel(model)
|
setSearchUIModel(model)
|
||||||
|
|
Loading…
Reference in New Issue