chore: search on enter for image picker popover unsplash input (#5499)
This commit is contained in:
parent
3fbfe94f5f
commit
a36d4480bd
1 changed files with 6 additions and 0 deletions
|
|
@ -215,6 +215,12 @@ export const ImagePickerPopover: React.FC<Props> = observer((props) => {
|
|||
id="search"
|
||||
name="search"
|
||||
type="text"
|
||||
onKeyDown={(e) => {
|
||||
if (e.key === "Enter") {
|
||||
e.preventDefault();
|
||||
setSearchParams(formData.search);
|
||||
}
|
||||
}}
|
||||
value={value}
|
||||
onChange={(e) => setFormData({ ...formData, search: e.target.value })}
|
||||
ref={ref}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue