diff --git a/site/src/pages/[...framework]/examples/_Input/svelte/Component.svelte b/site/src/pages/[...framework]/examples/_Input/svelte/Component.svelte index affdcf92..3693826d 100644 --- a/site/src/pages/[...framework]/examples/_Input/svelte/Component.svelte +++ b/site/src/pages/[...framework]/examples/_Input/svelte/Component.svelte @@ -26,6 +26,7 @@ if (!isNaN(num) && min <= num && num <= max) next = num } // Manually update the input.value in case the number stays the same e.g. 09 == 9 + console.log(next) input.value = String(next) value = next }