From 9893aac067029bf6d1b3fb4463c6f4164ccd3ef8 Mon Sep 17 00:00:00 2001 From: TwistedUmbrellaX Date: Sun, 27 Oct 2024 21:41:29 -0400 Subject: [PATCH] Fix a typo in the config page editor --- IntroSkipper/Configuration/configPage.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IntroSkipper/Configuration/configPage.html b/IntroSkipper/Configuration/configPage.html index d43fdd8..9845e89 100644 --- a/IntroSkipper/Configuration/configPage.html +++ b/IntroSkipper/Configuration/configPage.html @@ -1092,13 +1092,13 @@ // Try to get the timestamps of each intro, falling back a default value of zero if no intro was found const leftEpisodeJson = await getJson("Episode/" + selectShow.value + "/Timestamps"); - // Update the editor for the first and second episodes + // Update the editor for the movie timestampEditor.style.display = "unset"; document.querySelector("#editLeftEpisodeTitle").textContent = selectShow.value; document.querySelector("#editLeftIntroEpisodeStartEdit").value = leftEpisodeJson.Introduction.Start; document.querySelector("#editLeftIntroEpisodeEndEdit").value = leftEpisodeJson.Introduction.End; document.querySelector("#editLeftCreditEpisodeStartEdit").value = leftEpisodeJson.Credits.Start; - document.querySelector("#editLeftCreditEpisodeEndEdit").value = leftEpisodeJson.Credits.End + document.querySelector("#editLeftCreditEpisodeEndEdit").value = leftEpisodeJson.Credits.End; // Update display inputs const inputs = document.querySelectorAll('#timestampEditor input[type="number"]');