From a916336058e37933008e86178b5b0720925d44ab Mon Sep 17 00:00:00 2001 From: karf Date: Thu, 21 Jul 2016 16:27:57 +0200 Subject: [PATCH] fix(View): default set action should be added in the root view --- src/View.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View.js b/src/View.js index 363f296..4c51428 100644 --- a/src/View.js +++ b/src/View.js @@ -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