Skip to content

Commit

Permalink
fix(View): default set action should be added in the root view
Browse files Browse the repository at this point in the history
  • Loading branch information
karfcz committed Jul 21, 2016
1 parent 512e387 commit a916336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ var View = createClass(
set: actionSet
}, options.actions);
}
else if(this.parentView || this._isolated)
else if(this.parentView == null || this._isolated)
{
this.actions = {
set: actionSet
Expand Down

0 comments on commit a916336

Please sign in to comment.