Fix let binding in reskindex.js

pull/21833/head
J. Ryan Stinnett 2021-01-19 17:58:17 +00:00
parent 4cfd6e53aa
commit 016140670b
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ function filesHaveChanged(files, prevFiles) {
return true;
}
// Check for name changes
for (const i = 0; i < files.length; i++) {
for (let i = 0; i < files.length; i++) {
if (prevFiles[i] !== files[i]) {
return true;
}