Merge pull request #1416 from btakita/gh-1415

Declaring variable `dirty`.
pull/1422/head
Rich Harris 7 years ago committed by GitHub
commit ae8c3ba602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -64,7 +64,7 @@ assign(Store.prototype, {
for (let i = 0; i < dependents.length; i += 1) { for (let i = 0; i < dependents.length; i += 1) {
const dependent = dependents[i]; const dependent = dependents[i];
const componentState = {}; const componentState = {};
dirty = false; let dirty = false;
for (let j = 0; j < dependent.props.length; j += 1) { for (let j = 0; j < dependent.props.length; j += 1) {
const prop = dependent.props[j]; const prop = dependent.props[j];

Loading…
Cancel
Save