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.error
was removed fromactions.submit
. Make sure you properly handle errors in your promises! #697 - The prop warning for
storeSubscription
should no longer be shown anymore 🎉 #698 - Small TS definition updates for
combineForms
andcreateForms
. #699 - Custom controls will no longer coerce non-strings to empty strings. #708
- The documentation was updated to note the subtle difference between
actions.load
andactions.change(model, { silent: true })
. In case you're curious:- both
.load
and.change
(silent) will silently change the value. - only
.load
will also set the.loadedValue
, which is the value that the control will be reset to uponactions.reset(model)
.
- both