Align the score cells with their column headers
Browse filesThe migration cell was still being drawn after that axis left the header row, so every score sat one column to the right - the novelty header showed the empty migration cell and read as unscored, while the figures themselves were fine. Cells and headers now match.
- index.html +1 -1
index.html
CHANGED
|
@@ -788,7 +788,7 @@ function render(){
|
|
| 788 |
<td class="num">${(DIV==="all" ? e.rank : e.div_rank) ?? "—"}</td>
|
| 789 |
<td>${esc(e.formula||e.candidate_id||"")}${e.masked?' <span class="pill">🔒</span>':""}</td>
|
| 790 |
<td>${who}</td><td>${esc(e.model_name||"")}</td><td>${dt}</td>
|
| 791 |
-
${num("oxidation")}${num("li_stability")}${num("
|
| 792 |
<td class="num"><b>${tot}</b></td></tr>`;
|
| 793 |
}).join("") : `<tr><td colspan="${COLS.length}" class="sub">${d.empty}</td></tr>`;
|
| 794 |
|
|
|
|
| 788 |
<td class="num">${(DIV==="all" ? e.rank : e.div_rank) ?? "—"}</td>
|
| 789 |
<td>${esc(e.formula||e.candidate_id||"")}${e.masked?' <span class="pill">🔒</span>':""}</td>
|
| 790 |
<td>${who}</td><td>${esc(e.model_name||"")}</td><td>${dt}</td>
|
| 791 |
+
${num("oxidation")}${num("li_stability")}${num("novelty")}
|
| 792 |
<td class="num"><b>${tot}</b></td></tr>`;
|
| 793 |
}).join("") : `<tr><td colspan="${COLS.length}" class="sub">${d.empty}</td></tr>`;
|
| 794 |
|