Fix builds row class
This commit is contained in:
parent
48a1d7236f
commit
ededf454a0
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@
|
|||
var rowElement = document.getElementById(rowId);
|
||||
if (!rowElement) {
|
||||
rowElement = document.createElement("div");
|
||||
rowElement.class = "row";
|
||||
rowElement.classList.add("row");
|
||||
rowElement.id = rowId;
|
||||
document.getElementById("builds").appendChild(rowElement);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue