You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In TextField, there is this code: helperText={showError ? meta.error || meta.submitError : undefined}
that basically ignores any initial value of helperText.
Is there any reason not to have the code like:
helperText={showError ? meta.error || meta.submitError : rest.helperText} ...or something to that effect?
I apologize if I violated your guidelines for requesting a feature.
The text was updated successfully, but these errors were encountered:
alirezamirian
added a commit
to alirezamirian/final-form-material-ui
that referenced
this issue
Aug 23, 2019
The component used is MuiFormHelperText and display error messages, then, the variant prop should be error right ?
But if we use the helper text as a real helper, the variant error should not be used...
In TextField, there is this code: helperText={showError ? meta.error || meta.submitError : undefined}
that basically ignores any initial value of helperText.
Is there any reason not to have the code like:
helperText={showError ? meta.error || meta.submitError : rest.helperText} ...or something to that effect?
I apologize if I violated your guidelines for requesting a feature.
The text was updated successfully, but these errors were encountered: