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 = ""; }