diff options
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 69f4c3ce..b9b3a1c8 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -336,7 +336,7 @@ <input type="checkbox" bind:checked={includeSpecials} /> Include specials and OVAs<br /> <input type="checkbox" bind:checked={abbreviateTitles} /> Fit long titles<br /> {#if abbreviateTitles} - Maximum title length <input type="number" bind:value={maxAbbreviateLength} /><br /> + Maximum title length <input type="range" min="4" bind:value={maxAbbreviateLength} /><br /> {/if} </div> |