mirror of
https://github.com/danbulant/console-hub
synced 2026-07-05 11:00:59 +00:00
fix case
This commit is contained in:
parent
c031636bf6
commit
9aae3fcc38
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ function refreshFiles(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var shown = [];
|
var shown = [];
|
||||||
files.foreach((item, index) => {
|
files.forEach((item, index) => {
|
||||||
shown[index] = document.createElement('li');
|
shown[index] = document.createElement('li');
|
||||||
$("#files-list").append(shown[index]);
|
$("#files-list").append(shown[index]);
|
||||||
shown[index].id = "file-" + index;
|
shown[index].id = "file-" + index;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue