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

This commit is contained in:
tugcekucukoglu 2024-01-26 14:45:05 +03:00
parent 87c94406a7
commit 7560353472

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;
}