Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

React Redux Form v0.14.2

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 16 Jul 17:32
· 1068 commits to master since this release

Tracking Enhancement!

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