Skip to content

Commit

Permalink
Fix let back to const
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jul 6, 2020
1 parent 32d7d61 commit 04a4ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/dom-repeat.html
Expand Up @@ -3935,7 +3935,7 @@ <h4>x-repeat-limit</h4>
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)')));
}
Expand Down

0 comments on commit 04a4ded

Please sign in to comment.