Fixed #1372 - InputNumber input event returns wrong value

pull/1478/head
mertsincan 2021-08-25 10:51:54 +03:00
parent 798c514448
commit 05d0f8c35d
1 changed files with 2 additions and 2 deletions

View File

@ -697,9 +697,9 @@ export default {
if (valueStr != null) {
newValue = this.parseValue(valueStr);
this.updateInput(newValue, insertedValueStr, operation);
}
this.handleOnInput(event, currentValue, newValue);
this.handleOnInput(event, currentValue, newValue);
}
},
handleOnInput(event, currentValue, newValue) {
if (this.isValueChanged(currentValue, newValue)) {