N-FIN-86: fix payor input always focus next
This commit is contained in:
parent
4a25a93186
commit
ed49ad4ce7
1 changed files with 4 additions and 1 deletions
|
@ -69,6 +69,7 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas
|
|||
|
||||
const payeeRef = useRef<HTMLInputElement>({} as HTMLInputElement);
|
||||
const categoryRef = useRef<HTMLInputElement>({} as HTMLInputElement);
|
||||
const submitRef = useRef<HTMLButtonElement>({} as HTMLButtonElement);
|
||||
|
||||
return (
|
||||
<Form {...form}>
|
||||
|
@ -149,7 +150,9 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas
|
|||
{...field}
|
||||
onChange={(e) => {
|
||||
field.onChange(e);
|
||||
if (e && e.target.value) {
|
||||
payeeRef && payeeRef.current.focus();
|
||||
}
|
||||
}}/>
|
||||
</FormControl>
|
||||
<FormMessage/>
|
||||
|
|
Loading…
Add table
Reference in a new issue