Fixed #5097 - nob: Problem with the step property when using the keyboard arrows

pull/5161/head
tugcekucukoglu 2024-01-26 14:45:05 +03:00
parent 87c94406a7
commit 7560353472
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ export default {
case 'ArrowUp': {
event.preventDefault();
this.updateModelValue(this.modelValue + 1);
this.updateModelValue(this.modelValue + this.step);
break;
}
@ -135,7 +135,7 @@ export default {
case 'ArrowDown': {
event.preventDefault();
this.updateModelValue(this.modelValue - 1);
this.updateModelValue(this.modelValue - this.step);
break;
}