This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v1.8.1
Enhancements and Fixes
- Adding model caching and properly removing form values with updated field models. See #619 for more details.
- The stray
console.errorwas removed fromactions.submit. Make sure you properly handle errors in your promises! #697 - The prop warning for
storeSubscriptionshould no longer be shown anymore 🎉 #698 - Small TS definition updates for
combineFormsandcreateForms. #699 - Custom controls will no longer coerce non-strings to empty strings. #708
- The documentation was updated to note the subtle difference between
actions.loadandactions.change(model, { silent: true }). In case you're curious:- both
.loadand.change(silent) will silently change the value. - only
.loadwill also set the.loadedValue, which is the value that the control will be reset to uponactions.reset(model).
- both