Skip to content

Commit

Permalink
feat(redux): Second param "location" for action creators
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLambrecht authored and ZauberNerd committed Mar 27, 2019
1 parent 3eea042 commit f681f79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ReduxActionCreatorRuntimeMixin extends Mixin {
if (!match) {
return Promise.resolve();
}
return store.dispatch(action(match.params));
return store.dispatch(action(match.params, location));
})
);
}
Expand Down

0 comments on commit f681f79

Please sign in to comment.