Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 02dbcb1

Browse files
committed
Potential fix for issue #722
1 parent 1c2fed9 commit 02dbcb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reducers/forms-reducer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createFormCombiner(strategy = defaultStrategy) {
8888
[key]: (state, action) => strategy.formReducer(model, initialFormState, {
8989
plugins,
9090
...formOptions,
91-
})(state, { ...action, state: modelCache[cacheId] }),
91+
})(state, { ...action, state: Object.assign({}, modelCache[cacheId]) }),
9292
};
9393
}
9494

0 commit comments

Comments
 (0)