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 payeeRef = useRef<HTMLInputElement>({} as HTMLInputElement);
|
||||||
const categoryRef = useRef<HTMLInputElement>({} as HTMLInputElement);
|
const categoryRef = useRef<HTMLInputElement>({} as HTMLInputElement);
|
||||||
|
const submitRef = useRef<HTMLButtonElement>({} as HTMLButtonElement);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
|
@ -149,7 +150,9 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas
|
||||||
{...field}
|
{...field}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
field.onChange(e);
|
field.onChange(e);
|
||||||
payeeRef && payeeRef.current.focus();
|
if (e && e.target.value) {
|
||||||
|
payeeRef && payeeRef.current.focus();
|
||||||
|
}
|
||||||
}}/>
|
}}/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormMessage/>
|
<FormMessage/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue