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

Commit

Permalink
Merge pull request #979 from tylercrompton/patch-1
Browse files Browse the repository at this point in the history
Fixed bug that prevented passing options to actions.merge
  • Loading branch information
davidkpiano committed Oct 16, 2017
2 parents 22c1268 + ec380f9 commit 4c32d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/model-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export function createModelActions(s = defaultStrategies) {
return inserted;
}, s.array, 3);

const merge = createModifierAction(s.merge, {}, 2);
const merge = createModifierAction(s.merge, {}, 3);

const omit = createModifierAction((value, props = []) => {
const propsArray = typeof props === 'string'
Expand Down

0 comments on commit 4c32d78

Please sign in to comment.