Make the ignore button label specific

This commit is contained in:
TwistedUmbrellaX 2024-10-20 07:53:48 -04:00
parent aa1e0b8966
commit 5205965d0d

View File

@ -144,7 +144,7 @@
Increasing either of these settings will cause episode analysis to take much longer. Increasing either of these settings will cause episode analysis to take much longer.
</p> </p>
<div class="inputContainer" id="movieCreditsDuration"> <div class="inputContainer" id="movieCreditsDuration">
<label class="inputLabel inputLabelUnfocused" for="MaximumMovieCreditsDuration"> Maximum movie credits duration (in seconds) </label> <label class="inputLabel inputLabelUnfocused" for="MaximumMovieCreditsDuration"> Maximum movie credits duration (in seconds) </label>
<input id="MaximumMovieCreditsDuration" type="number" is="emby-input" min="1" /> <input id="MaximumMovieCreditsDuration" type="number" is="emby-input" min="1" />
@ -992,6 +992,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);
@ -1080,6 +1082,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";