Fix let back to const

This commit is contained in:
Kevin Schaaf
2020-07-06 14:21:40 -07:00
parent 32d7d61d4f
commit 04a4ded879
+1 -1
View File
@@ -3935,7 +3935,7 @@ suite('chunked rendering', function() {
let chunked;
let notifyChange;
let targetCount;
let handleChange = () => {
const handleChange = () => {
if (!targetCount || chunked.$.repeater.renderedItemCount >= targetCount) {
notifyChange(Array.from(chunked.root.querySelectorAll('*:not(template):not(dom-repeat)')));
}