diff --git a/src/ui/modals/ReadingProgressModalView.svelte b/src/ui/modals/ReadingProgressModalView.svelte index 2ba8652..dc0f930 100644 --- a/src/ui/modals/ReadingProgressModalView.svelte +++ b/src/ui/modals/ReadingProgressModalView.svelte @@ -23,6 +23,7 @@ ); const min = $derived(0); const max = $derived(mode === "page-number" ? pageCount : 100); + const inputmode = $derived(mode === "page-number" ? "numeric" : "decimal") function onsubmit(ev: SubmitEvent) { ev.preventDefault(); @@ -47,6 +48,7 @@