Skip to content

Commit ac6780b

Browse files
committed
fix: Pass true instead of false on time increment
1 parent ed1479d commit ac6780b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VueDatePicker/components/TimePicker/TimeInput.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
tabindex="0"
1919
@keydown.enter.prevent="handleTimeValue(timeInput.type, true, { keyboard: true })"
2020
@keydown.space.prevent="handleTimeValue(timeInput.type, true, { keyboard: true })"
21-
@click="defaultedConfig.timeArrowHoldThreshold ? undefined : handleTimeValue(timeInput.type, false)"
21+
@click="defaultedConfig.timeArrowHoldThreshold ? undefined : handleTimeValue(timeInput.type, true)"
2222
@mousedown="
2323
defaultedConfig.timeArrowHoldThreshold ? handleTimeValue(timeInput.type, true) : undefined
2424
"

0 commit comments

Comments
 (0)