songs page add query limit option

This commit is contained in:
2026-02-06 12:08:37 -08:00
parent a33d495acd
commit 0d48cea726
3 changed files with 18 additions and 1 deletions

View File

@@ -131,6 +131,18 @@
<NativeSelectOption value="3">INS</NativeSelectOption>
</NativeSelect>
</div>
<div class="flex flex-col gap-2">
<Label for="songs-limit">Limit</Label>
<Input
id="songs-limit"
type="number"
min="20"
max="200"
step="20"
class="w-1/2"
bind:value={params.songsLimit}
/>
</div>
</div>
</form>