This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v0.14.2
Tracking Enhancement!
- Now, all actions can take a "model tracking function" as their first argument instead of a
model
string. This allows you to dynamically track which model you want based on the predicate. More info here: https://davidkpiano.gitbooks.io/react-redux-form/content/tracking_collections.html
import { actions, track } from 'react-redux-form';
// ...
dispatch(actions.change(track('team.members[].name', { id: 123 }), 'John'));
// will find the model path for the member in the team.members array
// and change only that member's name to "John"
Fixes
- Validation will no longer run before submit on
<Form validateOn="submit">
. #312