fix: admin/login: Enter key on username would skip validation of password

Massimo Melina committed Jun 15, 2022 at 23:45 UTC 064905d26fa30ed8700b2c4ef26f99b92a570668
1 file changed +1 -1
mui-grid-form/src/Form.ts
+1 -1
@@ -218,7 +218,7 @@ export function Form<Values extends Dict>({
218 || await f.getError?.(v, { values, fields })
219 || fieldExceptions[k]
220 errs[k] = err || false
221 - if (k === validateUpTo.current) break
221 + if (!submitAfterValidation.current && k === validateUpTo.current) break
222 if (!mounted.current) return // abort
223 }
224 setErrors(errs)