Skip to content

Commit 193a970

Browse files
author
Korshenko, Olexii(okorshenko)
committed
Merge pull request #33 from magento-mpi/MAGETWO-44396-mb
[MPI] Bugfixes MB
2 parents f8e1571 + 11a76de commit 193a970

File tree

2 files changed

+2
-2
lines changed
  • app/code/Magento

2 files changed

+2
-2
lines changed

app/code/Magento/Checkout/view/frontend/web/js/sidebar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ define([
5555
};
5656
events['click ' + this.options.item.button] = function(event) {
5757
event.stopPropagation();
58-
self._updateItemQty($(event.target));
58+
self._updateItemQty($(event.currentTarget));
5959
};
6060

6161
this._on(this.element, events);

app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $params = $block->getParams();
3232
'Magento_Checkout/js/action/place-order'
3333
],
3434
function(quote, placeOrderAction) {
35-
placeOrderAction(quote.paymentMethod(), true);
35+
placeOrderAction({"method": quote.paymentMethod().method}, true);
3636
}
3737
);
3838
<?php endif; ?>

0 commit comments

Comments
 (0)