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

Fixed bug that prevented passing options to actions.merge #979

Merged
merged 1 commit into from
Oct 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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