Skip to content

Commit

Permalink
Update product.js
Browse files Browse the repository at this point in the history
Remove trailing space
  • Loading branch information
ComonSoft authored Jun 21, 2024
1 parent 19a581a commit d7c2b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _dev/js/product.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ $(document).ready(() => {

$quantityInput.on('focusout', () => {
if (
$quantityInput.val() === ''
$quantityInput.val() === ''
|| parseInt($quantityInput.val(), 10) < parseInt($quantityInput.attr('min'), 10)
) {
$quantityInput.val($quantityInput.attr('min'));
Expand Down

0 comments on commit d7c2b84

Please sign in to comment.