diff --git a/framework/core/ember/common/app/components/ui/action-button.js b/framework/core/ember/common/app/components/ui/action-button.js index cf0f116e2..97be6707f 100644 --- a/framework/core/ember/common/app/components/ui/action-button.js +++ b/framework/core/ember/common/app/components/ui/action-button.js @@ -23,7 +23,7 @@ export default Ember.Component.extend({ if (typeof action === 'string') { this.sendAction('action'); } else if (typeof action === 'function') { - action(); + action.call(this); } } });