This commit is contained in:
4DBug
2026-08-27 16:11:56 -05:00
parent 82c6a96dbb
commit c8094b6734
13 changed files with 231 additions and 28 deletions
+1 -1
View File
@@ -714,7 +714,7 @@
b.type = 'button';
b.role = 'tab';
b.className = s.season_number === state.season ? 'chip chip--active' : 'chip';
b.textContent = `S${s.season_number}`;
b.textContent = `Season ${s.season_number}`;
b.title = `${s.name || `Season ${s.season_number}`} (${s.episode_count || 0})`;
b.addEventListener('click', () => {
if (s.season_number !== state.season) loadEpisodes(s.season_number, null);