diff options
| author | Fuwn <[email protected]> | 2023-11-16 15:16:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-16 15:16:40 -0800 |
| commit | 5da5a4deee4df4357ec0c4a5c5b6beb2e68de112 (patch) | |
| tree | 32b35ae772d88ae1ca3e4af433ad81e70d5a89d5 /src | |
| parent | feat(badges): download options (diff) | |
| download | due.moe-5da5a4deee4df4357ec0c4a5c5b6beb2e68de112.tar.xz due.moe-5da5a4deee4df4357ec0c4a5c5b6beb2e68de112.zip | |
feat(wrapped): title length slider
Diffstat (limited to 'src')
| -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> |