From db8f1040e1492f8cb9566d7f78716c1c478b7092 Mon Sep 17 00:00:00 2001 From: Dan Lasky Date: Fri, 5 Aug 2016 15:40:05 -0500 Subject: [PATCH] fix an issue where grid.set wouldn't update binds if the entire model was swapped --- src/strand-item-recycler/strand-item-recycler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strand-item-recycler/strand-item-recycler.js b/src/strand-item-recycler/strand-item-recycler.js index 1913f927..84f538ef 100644 --- a/src/strand-item-recycler/strand-item-recycler.js +++ b/src/strand-item-recycler/strand-item-recycler.js @@ -392,7 +392,7 @@ found here: https://github.com/Polymer/core-list if (bound && bound.value && - bound.value.model === model) { + this.data[bound.young] === model) { bound.instance.notifyPath("model" + change.path.slice(delimiter), change.value); } }