mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix applySearchFilter call
This commit is contained in:
parent
41160c41c7
commit
5366472ae1
1 changed files with 6 additions and 1 deletions
|
|
@ -449,7 +449,12 @@ function MultiSelectControlButtonBox(
|
|||
function SearchControlButtonBox(props: ControlButtonBoxProps): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<SearchBox searchTerm="" applySearchQuery={(searchQuery: string) => {}} />
|
||||
<SearchBox
|
||||
searchTerm=""
|
||||
applySearchQuery={(searchQuery: string) => {
|
||||
props.applySearchQuery('')
|
||||
}}
|
||||
/>
|
||||
<Button
|
||||
style="plainIcon"
|
||||
css={{ display: 'flex', marginLeft: 'auto' }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue