Make the ignore button label specific

This commit is contained in:
TwistedUmbrellaX 2024-10-20 07:53:48 -04:00
parent 627ae05def
commit 50ac67113a

View File

@ -969,6 +969,8 @@
return; return;
} }
saveIgnoreListSeriesButton.textContent = "Apply to series";
// add all seasons from this show to the season select // add all seasons from this show to the season select
for (const season in shows[selectShow.value].Seasons) { for (const season in shows[selectShow.value].Seasons) {
addItem(selectSeason, "Season " + shows[selectShow.value].Seasons[season], season); addItem(selectSeason, "Season " + shows[selectShow.value].Seasons[season], season);
@ -1057,6 +1059,7 @@
Dashboard.showLoadingMsg(); Dashboard.showLoadingMsg();
saveIgnoreListSeriesButton.textContent = "Apply to movie";
seasonSelection.style.display = "none"; seasonSelection.style.display = "none";
episodeSelection.style.display = "none"; episodeSelection.style.display = "none";
eraseMovieContainer.style.display = "unset"; eraseMovieContainer.style.display = "unset";