SeaWolf-AI commited on
Commit
ec6ef95
·
verified ·
1 Parent(s): 1b53433

Align the score cells with their column headers

Browse files

The 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.

Files changed (1) hide show
  1. 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("migration")}${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
 
 
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