From 9c07036a855001baa806ac3336e270b57db6f7b6 Mon Sep 17 00:00:00 2001 From: mandalore Date: Fri, 26 Jun 2026 20:15:35 -0500 Subject: [PATCH] add W-L-T column back alongside win percentage Co-Authored-By: Claude Sonnet 4.6 --- index.html | 1 + src/main.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/index.html b/index.html index 7905ff1..64eb754 100644 --- a/index.html +++ b/index.html @@ -73,6 +73,7 @@ # Player ITC Points + W–L–T Win % ITC Rank diff --git a/src/main.js b/src/main.js index 838a9d1..cfca7ee 100644 --- a/src/main.js +++ b/src/main.js @@ -219,6 +219,8 @@ function render(state) { `${esc(name)}` + `${u.nickname && fullName(u) ? `"${esc(u.nickname)}"` : ""}` + `${fmtPts(r.ITCPoints)}` + + `` + + `${r.wins || 0}${r.losses || 0}–${r.ties || 0}` + `${fmtWpct(r.wins, r.losses, r.ties)}` + `#${r.placing ?? "—"}`; tb.appendChild(tr); @@ -285,6 +287,7 @@ function showSkeleton() { `
` + `
` + `
` + + `
` + `
` + `
`; tb.appendChild(tr);