Skip to content

Commit

Permalink
Fix inheritance of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroPinheiro authored Aug 29, 2016
1 parent f4c1bff commit 46555b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/AltUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function getPrototypeChain(Obj, methods = {}) {
? methods
: getPrototypeChain(
Object.getPrototypeOf(Obj),
fn.assign(methods, getInternalMethods(Obj, true))
fn.assign(getInternalMethods(Obj, true), methods)
)
}

Expand Down

0 comments on commit 46555b2

Please sign in to comment.