Skip to content

Commit

Permalink
fix: fix default selected options in settings html
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Jan 1, 2025
1 parent 51406f3 commit a3906eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Shokofin/Pages/Settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -1582,9 +1582,9 @@ <h3>New Library Settings</h3>
<div class="selectContainer selectContainer-withDescription">
<label class="selectLabel" for="LibraryFilteringMode">Legacy Library Filtering</label>
<select is="emby-select" id="LibraryFilteringMode" name="LibraryFilteringMode" class="emby-select-withcolor emby-select">
<option value="Auto">Auto</option>
<option value="Strict" selected>Strict</option>
<option value="Lax" selected>Lax</option>
<option value="Auto" selected>Auto</option>
<option value="Strict">Strict</option>
<option value="Lax">Lax</option>
</select>
<div class="fieldDescription">
<div>Adjust how the plugin filters out unrecognized media in your new libraries. This option only applies if the VFS is not used.</div>
Expand Down Expand Up @@ -1643,9 +1643,9 @@ <h3 class="checkboxListLabel">Import Folder Mapping</h3>
<div class="selectContainer selectContainer-withDescription">
<label class="selectLabel" for="MediaFolderLibraryFilteringMode">Legacy Library Filtering</label>
<select is="emby-select" id="MediaFolderLibraryFilteringMode" name="MediaFolderLibraryFilteringMode" class="emby-select-withcolor emby-select">
<option value="Auto">Auto</option>
<option value="Strict" selected>Strict</option>
<option value="Lax" selected>Lax</option>
<option value="Auto" selected>Auto</option>
<option value="Strict">Strict</option>
<option value="Lax">Lax</option>
</select>
<div class="fieldDescription">
<div>Adjust how the plugin filters out unrecognized media in the library. This option only applies if the VFS is not used.</div>
Expand Down

0 comments on commit a3906eb

Please sign in to comment.