From 05d0f8c35d14e7c54ec192d3a4f61864fd8c37cb Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 25 Aug 2021 10:51:54 +0300 Subject: [PATCH] Fixed #1372 - InputNumber input event returns wrong value --- src/components/inputnumber/InputNumber.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/inputnumber/InputNumber.vue b/src/components/inputnumber/InputNumber.vue index eb57c9dce..9f7e82b43 100755 --- a/src/components/inputnumber/InputNumber.vue +++ b/src/components/inputnumber/InputNumber.vue @@ -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)) {