Skip to content

Commit

Permalink
MOL-527 checkout disabled button fix
Browse files Browse the repository at this point in the history
  • Loading branch information
margud committed Dec 6, 2021
1 parent 4011134 commit b566ee2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
+ Removed mail switch for awaiting and open order statuses.
+ Fixed issue where creating mollie order from back office had issues
+ Fixed issue where on some payment methods refund status would not be changed after refund webhook is called
+ Fixed issue where after wrong credit card input the button got disabled.

## Changes in release 4.4.2 ##
+ Fixed payment methods translations using API in checkout
Expand Down
3 changes: 3 additions & 0 deletions views/js/front/mollie_iframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ $(document).ready(function () {
$mollieCardToken.val(token.token);
isResubmit = true;
$form[0].submit();
return;
});

$('#payment-confirmation').find('button[type=submit]').prop("disabled", false);
});
}

Expand Down

0 comments on commit b566ee2

Please sign in to comment.