@zengenti/contensis-react-base 3.0.2-beta.7 → 3.0.2-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/forms.js CHANGED
@@ -124,7 +124,10 @@ var reducer = produce((state, action) => {
124
124
  formId,
125
125
  value
126
126
  } = action || {};
127
- state[formId].data = value;
127
+ state[formId].data = {
128
+ ...state[formId].data,
129
+ value
130
+ };
128
131
  return;
129
132
  }
130
133
  case SET_CHECKBOX_VALUE: