Hi there i can't belive that redux-forms do not supports nested initial values. Or i do something wrong?
I have reduh form in reducer and i connect in to component throw
@reduxForm({ form: 'singleText', enableReinitialize: true })
Parent component renders it with initial values like:
<TextSingleForm
initialValues={{...post}}
onSubmit={::this.submitAction}
activity={this.activity}
/>
...post is my nested object like:
{ contents: { ru: { text: "1", title: "2" }, en: { text: 1, title: 2 } } }
My field names is contents.ru.text, contents.ru.title
and etc.
My main point is i never get the value in my input components but initialValue
in redux filled properly HOW COME?