Prevent form submission as search is done while typing (#8546)

Prevent form submission as search is done while typing
This commit is contained in:
Michael Shilman 2019-10-24 11:10:15 +08:00 committed by GitHub
commit 28e8e837ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,6 +118,7 @@ export const PureSidebarSearch = ({ className, onChange, ...props }: PureSidebar
focussed={focussed}
className={className}
onReset={() => onChange('')}
onSubmit={e => e.preventDefault()}
>
<FilterField
type="text"