diff --git a/Jellyfin.Plugin.SmartPlaylist/configPage.html b/Jellyfin.Plugin.SmartPlaylist/configPage.html index 6cd4b47..cd597d2 100644 --- a/Jellyfin.Plugin.SmartPlaylist/configPage.html +++ b/Jellyfin.Plugin.SmartPlaylist/configPage.html @@ -71,17 +71,18 @@ const editEnabled = document.querySelector('#SmartplaylistEditEnabled'); if (id === null) { selection.selectedIndex = 0; - editName.value = ''; - editProgram.value = ''; - editSortProgram.value = ''; + editName.value = 'My New Smartplaylist'; + editProgram.value = '(is-favourite)'; + editSortProgram.value = '(begin *items*)'; editUsers.innerHTML = ''; for (const u of config.Users) { var o = document.createElement('option'); o.value = u[0]; o.innerHTML = u[1]; + o.setAttribute('selected', 'selected'); editUsers.appendChild(o); } - editEnabled.checked = false; + editEnabled.checked = true; return; } function matchId(p) {