remove seat counts from option labels, locations show name only (except sold out)

This commit is contained in:
Oliver
2026-06-14 19:38:20 -03:00
parent eab62121c3
commit 8fea7037e7
2 changed files with 2 additions and 7 deletions
+1 -4
View File
@@ -680,12 +680,9 @@ async function initServerLocations() {
opt.disabled = true;
opt.style.color = "#ff4444";
opt.style.fontWeight = "600";
} else if (available < 10) {
// Low seats — show count
opt.textContent = label + " (available " + available + ")";
} else {
// Plenty of seats
opt.textContent = label + " (available " + available + ")";
opt.textContent = label;
opt.style.color = "";
opt.style.fontWeight = "";
}