Skip to content

Commit 0381cab

Browse files
committed
MAGETWO-92788: Can't add a configurable product to the shopping cart on IE 11
1 parent 919dd8c commit 0381cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/ConfigurableProduct/view/frontend/web/js/options-updater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ define([
2626
if (!(data && data.items && data.items.length && productId)) {
2727
return false;
2828
}
29-
changedProductOptions = data.items.find(function (item) {
29+
changedProductOptions = _.find(data.items, function (item) {
3030
if (item['item_id'] === itemId) {
3131
return item['product_id'] === productId;
3232
}

0 commit comments

Comments
 (0)