Compare commits
1 Commits
861de12366
...
aec0fcc3c7
| Author | SHA1 | Date | |
|---|---|---|---|
| aec0fcc3c7 |
@@ -107,9 +107,9 @@ class State {
|
|||||||
.then(res => {
|
.then(res => {
|
||||||
let table = document.getElementById("pkg-list")
|
let table = document.getElementById("pkg-list")
|
||||||
table.innerHTML = ''
|
table.innerHTML = ''
|
||||||
res.values.forEach((row) => {
|
for(let i = 0; i < res.values.length; i++) {
|
||||||
table.appendChild(toHTML(row))
|
table.appendChild(toHTML(res.values[i]))
|
||||||
})
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user