From b5580545e13c744e4c5e5f4f74dab9b269648d61 Mon Sep 17 00:00:00 2001 From: Evan Fiordeliso Date: Wed, 10 Jun 2026 09:49:10 -0400 Subject: [PATCH] Add inputmode attribute to reading progress modal input --- src/ui/modals/ReadingProgressModalView.svelte | 2 ++ 1 file changed, 2 insertions(+) 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 @@