remove seat counts from option labels, locations show name only (except sold out)
This commit is contained in:
+1
-4
@@ -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 = "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user