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 -3
View File
@@ -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 = '';
}