From b566ee2b117789b8d87e8b47fc668eea95f1d5f0 Mon Sep 17 00:00:00 2001 From: margud Date: Mon, 6 Dec 2021 10:53:35 +0200 Subject: [PATCH] MOL-527 checkout disabled button fix --- changelog.md | 1 + views/js/front/mollie_iframe.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 179431da2..96f5b63e2 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/views/js/front/mollie_iframe.js b/views/js/front/mollie_iframe.js index 66ab801de..d2a8ab9a0 100644 --- a/views/js/front/mollie_iframe.js +++ b/views/js/front/mollie_iframe.js @@ -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); }); }