Barnabiii commited on
Commit
0948115
β€’
1 Parent(s): fbed079

BugFix blank cell

Browse files
Files changed (1) hide show
  1. 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
  }