@zengenti/contensis-react-base 3.0.2-beta.8 → 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/cjs/forms.js CHANGED
@@ -134,7 +134,10 @@ var reducer = immer.produce((state, action) => {
134
134
  formId,
135
135
  value
136
136
  } = action || {};
137
- state[formId].data = value;
137
+ state[formId].data = {
138
+ ...state[formId].data,
139
+ value
140
+ };
138
141
  return;
139
142
  }
140
143
  case SET_CHECKBOX_VALUE: