fix Store usage

pull/1282/head
Luke Edwards 7 years ago
parent a412f11907
commit 69ba60b840

@ -133,7 +133,7 @@ assign(Store.prototype, {
}
if (!dirty) return;
this._state = assign({}, oldState, newState);
this._state = assign(assign({}, oldState), newState);
for (var i = 0; i < this._sortedComputedProperties.length; i += 1) {
this._sortedComputedProperties[i].update(this._state, changed);

Loading…
Cancel
Save