Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Forms): only run onBlurValidator when no other errors are present (…
…#4172) Fixes #4074 With an exception for when `onChange` or `validator` is async. Then we still want to show the `onBlurValidator`. **An example** We have a slow `onChange` event. - The user types. - `onChange` fires and is ongoing while the user types more. - Before `onChange` has finished, the user blurs the field. - The `onBlurValidator` fails. - We show the error coming from the `onBlurValidator`.
- Loading branch information