Open kopax opened 4 years ago
After some investigation, it seems that the issues can be fixed with
<Field
- name="password"
+ name="newPassword"
component={TextField}
label={t('changePasswordForm.password')}
returnKeyType="next"
textContentType="password"
validate={passwordValidator}
blurOnSubmit={false}
secureTextEntry={!showPassword}
tabIndex="2"
{...getAutoCompleteType('off')}
/>
is password
a reserved name? It is weird that it breaks the form. I think this is a bug
What is the current behavior?
When I submit my form with the
handleSubmit
, nothing happenWhat is the expected behavior?
I expect to submit the form
Form
Can anyone see a mistake here or is this a bug?
What's your environment?
Other information
No log or error at all, tested in multiple page, it doesn't answer. I use react-final-form without trouble in many pages.