Skip to content

Commit 0fb567b

Browse files
committed
Undo problematic user setting change from
previous commit. Add fix for libraryPageSize 0 that was missed in original commit.
1 parent dd1ac8e commit 0fb567b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/displaySettings/displaySettings.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ <h2 class="sectionTitle">
224224
</h2>
225225

226226
<div class="inputContainer inputContainer-withDescription">
227-
<input is="emby-input" type="number" id="txtLibraryPageSize" pattern="[0-9]*" required="required" min="0" max="10000" step="1" label="${LabelLibraryPageSize}" />
227+
<input is="emby-input" type="number" id="txtLibraryPageSize" pattern="[0-9]*" required="required" min="0" max="1000" step="1" label="${LabelLibraryPageSize}" />
228228
<div class="fieldDescription">${LabelLibraryPageSizeHelp}</div>
229229
</div>
230230

0 commit comments

Comments
 (0)