Spaces:
Running
Running
BugFix blank cell
Browse files- ai_models.html +2 -0
ai_models.html
CHANGED
|
@@ -131,8 +131,10 @@
|
|
| 131 |
|
| 132 |
// creates an empty row
|
| 133 |
else {
|
|
|
|
| 134 |
const td = tr.insertCell();
|
| 135 |
td.appendChild(document.createTextNode(""))
|
|
|
|
| 136 |
}
|
| 137 |
}
|
| 138 |
}
|
|
|
|
| 131 |
|
| 132 |
// creates an empty row
|
| 133 |
else {
|
| 134 |
+
for (let j = 0; j < 2; j++) {
|
| 135 |
const td = tr.insertCell();
|
| 136 |
td.appendChild(document.createTextNode(""))
|
| 137 |
+
}
|
| 138 |
}
|
| 139 |
}
|
| 140 |
}
|