From f965334e5740f08346ef6357202a8c1f707639bd Mon Sep 17 00:00:00 2001 From: mandalore Date: Wed, 1 Jul 2026 09:39:38 -0500 Subject: [PATCH] feat: move LMC Rank column to sit next to ITC Rank Co-Authored-By: Claude Sonnet 4.6 --- index.html | 2 +- src/main.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index cb4e611..6befd71 100644 --- a/index.html +++ b/index.html @@ -74,10 +74,10 @@ Player ITC Points LMC Points - LMC Rank W–L–T Win % ITC Rank + LMC Rank Stat-Check ELO diff --git a/src/main.js b/src/main.js index 1136683..5070664 100644 --- a/src/main.js +++ b/src/main.js @@ -371,7 +371,6 @@ function render(state) { return `${fmtPts(r.ITCPoints)}` + mobilePct + mobileLmc + mobileElo + `` + lmcCell + - lmcRankCell + `` + `${r.wins || 0}${r.losses || 0}–${r.ties || 0}` + careerSub + `` + @@ -379,6 +378,7 @@ function render(state) { careerPct + ``; })() + `#${r.placing ?? "—"}` + + lmcRankCell + (() => { if (eloMatch === undefined) return ``; if (!eloMatch) return `—`; @@ -454,10 +454,10 @@ function showSkeleton() { `
` + `
` + `
` + - `
` + `
` + `
` + `
` + + `
` + `
`; tb.appendChild(tr); }