From b5f8a6de5218cbe6d365f7ee8f4bd53582a60284 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Thu, 11 Jul 2019 10:16:57 -0700 Subject: [PATCH] Reorder based on review feedback. --- lib/elements/dom-if.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elements/dom-if.js b/lib/elements/dom-if.js index ba794a77b4..8bc21caf99 100644 --- a/lib/elements/dom-if.js +++ b/lib/elements/dom-if.js @@ -425,8 +425,8 @@ class DomIfFast extends DomIfBase { __syncHostProperties() { const syncInfo = this.__syncInfo; if (syncInfo) { - syncInfo.runEffects(syncInfo.changedProps, syncInfo.hasPaths); this.__syncInfo = null; + syncInfo.runEffects(syncInfo.changedProps, syncInfo.hasPaths); } }