From 8fea7037e74c08ee3ae19f08bb4e599ba7c83810 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 14 Jun 2026 19:38:20 -0300 Subject: [PATCH] remove seat counts from option labels, locations show name only (except sold out) --- add.html | 4 +--- assets/js/script.js | 5 +---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/add.html b/add.html index c256ab8..3087a2e 100644 --- a/add.html +++ b/add.html @@ -573,10 +573,8 @@ opt.disabled = true; opt.style.color = '#ff4444'; opt.style.fontWeight = '600'; - } else if (available < 10) { - opt.textContent = label + ' (available ' + available + ')'; } else { - opt.textContent = label + ' (available ' + available + ')'; + opt.textContent = label; opt.style.color = ''; opt.style.fontWeight = ''; } diff --git a/assets/js/script.js b/assets/js/script.js index 15d10cb..597239e 100644 --- a/assets/js/script.js +++ b/assets/js/script.js @@ -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 = ""; }