Fix clearing of range input

This commit is contained in:
LilyRose2798 2024-04-11 15:53:40 +10:00
parent 9e831a1036
commit 1498f0f9be
1 changed files with 1 additions and 1 deletions

View File

@ -636,7 +636,7 @@
const jumpToInput = () => { const jumpToInput = () => {
try { try {
jump(rangeInput.value) if (rangeInput.value) jump(rangeInput.value)
setJumpParam(rangeInput.value) setJumpParam(rangeInput.value)
rangeInput.setCustomValidity("") rangeInput.setCustomValidity("")
} catch (e) { } catch (e) {