Skip to content
Snippets Groups Projects
Commit 2f7f1edb authored by Giannis Kopanas's avatar Giannis Kopanas
Browse files

fix(components): redux form

parent ff56878c
No related branches found
No related tags found
No related merge requests found
import { debounce } from 'lodash' import { debounce, isEmpty } from 'lodash'
import { compose, withProps } from 'recompose' import { compose, withProps } from 'recompose'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import { withRouter } from 'react-router-dom' import { withRouter } from 'react-router-dom'
...@@ -45,6 +45,7 @@ const onSubmit = (values, dispatch, { project, version, history }) => { ...@@ -45,6 +45,7 @@ const onSubmit = (values, dispatch, { project, version, history }) => {
} }
const onChange = (values, dispatch, { project, version }) => { const onChange = (values, dispatch, { project, version }) => {
if (isEmpty(values)) return false
values.note.content = stripHtml(values.note.content) // see TODO above values.note.content = stripHtml(values.note.content) // see TODO above
version.decision = { version.decision = {
...version.decision, ...version.decision,
...@@ -92,5 +93,6 @@ export default compose( ...@@ -92,5 +93,6 @@ export default compose(
onChange: debounce(onChange, 1000, { maxWait: 5000 }), onChange: debounce(onChange, 1000, { maxWait: 5000 }),
onSubmit, onSubmit,
destroyOnUnmount: false, destroyOnUnmount: false,
enableReinitialize: true,
}), }),
)(DecisionLayout) )(DecisionLayout)
...@@ -87,7 +87,6 @@ const DecisionLayout = ({ ...@@ -87,7 +87,6 @@ const DecisionLayout = ({
</AdminSection> </AdminSection>
<AdminSection> <AdminSection>
<DecisionForm <DecisionForm
decision={decision}
handleSubmit={handleSubmit} handleSubmit={handleSubmit}
uploadFile={uploadFile} uploadFile={uploadFile}
valid={valid} valid={valid}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment