Skip to content

Commit 1039e2f

Browse files
committed
ACP2E-3710: small fix
1 parent 5cf7259 commit 1039e2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web/mage/validation/validation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ define([
1313
$.each({
1414
'validate-grouped-qty': [
1515
function (value, element) {
16-
let inputValue = parseFloat(element.value) || 0;
16+
let inputValue = parseFloat($(element).val()) || 0;
1717

1818
return inputValue > 0;
1919
},

0 commit comments

Comments
 (0)