diff --git a/Jellyfin.Plugin.MediaBarEnhanced/Configuration/configPage.html b/Jellyfin.Plugin.MediaBarEnhanced/Configuration/configPage.html
index b7ee732..853ee0d 100644
--- a/Jellyfin.Plugin.MediaBarEnhanced/Configuration/configPage.html
+++ b/Jellyfin.Plugin.MediaBarEnhanced/Configuration/configPage.html
@@ -165,7 +165,7 @@
@@ -574,21 +574,30 @@
return h;
}
- div.innerHTML = `
-
-
-
-
-
- From:
- ${mkSelect(data.StartDay, days, 'start-day')}
- ${mkSelect(data.StartMonth, months, 'start-month')}
- To:
- ${mkSelect(data.EndDay, days, 'end-day')}
- ${mkSelect(data.EndMonth, months, 'end-month')}
-
-
- `;
+ div.innerHTML = '' +
+ '
' +
+ '
' +
+ '
Name of the season (e.g. Christmas).
' +
+ '
' +
+ '
' +
+ '
' +
+ '' +
+ '
' +
+ '
' +
+ ' From:' +
+ mkSelect(data.StartDay, days, 'start-day') +
+ mkSelect(data.StartMonth, months, 'start-month') +
+ ' To:' +
+ mkSelect(data.EndDay, days, 'end-day') +
+ mkSelect(data.EndMonth, months, 'end-month') +
+ '
' +
+ '
Date range (inclusive) when this content is active.
' +
+ '
' +
+ '' +
+ '
' +
+ '
' +
+ '
Comma-separated list of Movie/Series/Collection IDs to show during this season.
' +
+ '
';
div.querySelector('.remove-section').addEventListener('click', function() {
div.remove();