Rolands Jegorovs

Results 5 comments of Rolands Jegorovs

Upping this issue, since it's still relevant for my project as well

Doesn't work in my case. **My form HOC:** ``` const withForm = reduxForm({ form: 'foo', destroyOnUnmount: false, validate: fooValidation, enableReinitialize: true, onSubmit: validateForm, initialValues: { bar: 'Baz' } })(FooComponent); ```...

UPDATE: Managed to get validation working and field values filled with `autofill` instead of `initialize`. ``` for (const field in data) { //

Still encountering the same issue. Tried on Ubuntu and MacOS.

If anyone stumbles upon this issue, this is how I resolved it. However, I am not sure that this solution will work for every FTP server. **Code is in Typescript:**...