Skip to content

Commit 1d129d7

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - magento#15829: [Backport] Resolve Error While Trying To Load Quote Item Collection Using Magent� #2 (by @neeta-wagento) - magento#15834: [BackPort] Resolve Knockout non-unique elements id in console error (by @viral-wagento) Fixed GitHub Issues: - magento#8954: Error While Trying To Load Quote Item Collection Using Magento\Quote\Model\ResourceModel\QuoteItem\Collection::getItems() (reported by @rendyep) has been fixed in magento#15829 by @neeta-wagento in 2.1-develop branch Related commits: 1. c261156 2. 950e317 - magento#15348: Multiple Payment Methods Enabled is giving error in console "Found 3 Elements with non - unique Id" (reported by @neeta-wagento) has been fixed in magento#15834 by @viral-wagento in 2.1-develop branch Related commits: 1. b63d2c5
2 parents 477bea4 + 958359d commit 1d129d7

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/template/billing-address/form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- ko template: getTemplate() --><!-- /ko -->
1010
<!--/ko-->
1111
<form data-hasrequired="* Required Fields">
12-
<fieldset id="billing-new-address-form" class="fieldset address">
12+
<fieldset data-bind="attr: { id:'billing-new-address-form-'+index, value:index}" class="fieldset address">
1313
<!-- ko foreach: getRegion('additional-fieldsets') -->
1414
<!-- ko template: getTemplate() --><!-- /ko -->
1515
<!--/ko-->

app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected function _construct()
9595
*/
9696
public function getStoreId()
9797
{
98-
return (int)$this->_quote->getStoreId();
98+
return (int)$this->_productCollectionFactory->create()->getStoreId();
9999
}
100100

101101
/**

0 commit comments

Comments
 (0)