This repository was archived by the owner on Aug 23, 2022. It is now read-only.
React Redux Form v1.4.2
Fixes and Enhancements
- Optimizations were made to prevent a
load
intent from occurring after a dispatchedactions.reset
. This was initially introduced to ensure that aRESET
set the value to its loaded value, if it changed. Because there was no distinction between the loaded and initial value,LOAD
was always called as an intent. Now, there's a separation between.loadedValue
and.initialValue
- if and only if they are different willLOAD
be intended. #561 - As a result of the above, the internal
.value
property in form/field objects has been removed. It is redundant with the model state, and allowed refactoring to simplified code.