Skip to content

Commit d36c704

Browse files
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - #21298: Fixed pagination drop-down size does not appropriate. (by @mage2pratik) - #21310: Correct spelling (by @ravi-chandra3197) - #20856: ipad-view-order-summary-block (by @dipti2jcommerce) - #19395: store_view_code-column-has-empty-values-in-csv-17784. (by @Valant13) - #20071: [Forwardport] [Backport] fixed store wise product filter issue (by @shikhamis11) Fixed GitHub Issues: - #21296: Pagination drop-down size does not appropriate. (reported by @mage2pratik) has been fixed in #21298 by @mage2pratik in 2.3-develop branch Related commits: 1. 9d4f13c - #20855: In checkout page product price not align proper in order summary block for ipad view (reported by @dipti2jcommerce) has been fixed in #20856 by @dipti2jcommerce in 2.3-develop branch Related commits: 1. 4bb06ef 2. 92d4ffa 3. 5c67e67 - #17784: store_view_code column has empty values in csv (reported by @GovindaSharma) has been fixed in #19395 by @Valant13 in 2.3-develop branch Related commits: 1. ea9f359 - #19786: Can only export default store view items when upgrade to 2.3.0 (reported by @Yuwei9291) has been fixed in #19395 by @Valant13 in 2.3-develop branch Related commits: 1. ea9f359 - #18374: Unable to get product attribute value for store-view scope type in product collection loaded for a specific store. (reported by @milindsingh) has been fixed in #20071 by @shikhamis11 in 2.3-develop branch Related commits: 1. 825fa30 2. fd52e94 3. bc35cdc
2 parents 0d0b300 + e860fc1 commit d36c704

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public function addAttributeToFilter($attribute, $condition = null, $joinType =
415415
*/
416416
public function addFieldToFilter($attribute, $condition = null)
417417
{
418-
return $this->addAttributeToFilter($attribute, $condition);
418+
return $this->addAttributeToFilter($attribute, $condition, 'left');
419419
}
420420

421421
/**

app/code/Magento/Ui/view/base/web/js/grid/data-storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ define([
199199
},
200200

201201
/**
202-
* Caches requests object with provdided parameters
202+
* Caches requests object with provided parameters
203203
* and data object associated with it.
204204
*
205205
* @param {Object} data - Data associated with request.

app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-dropdown.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@
234234
border: 0;
235235
display: inline;
236236
margin: 0;
237+
width: 6rem;
237238

238239
body._keyfocus &:focus {
239240
box-shadow: none;

app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_order-summary.less

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,14 @@
152152
}
153153

154154
.product-item-name-block {
155-
display: table-cell;
155+
display: block;
156156
padding-right: @indent__xs;
157157
text-align: left;
158158
}
159159

160160
.subtotal {
161-
display: table-cell;
162-
text-align: right;
161+
display: block;
162+
text-align: left;
163163
}
164164

165165
.price {
@@ -231,3 +231,27 @@
231231
}
232232
}
233233
}
234+
235+
//
236+
// Tablet
237+
// _____________________________________________
238+
239+
@media only screen and (max-width: @screen__m) {
240+
.opc-block-summary {
241+
.product-item {
242+
.product-item-inner {
243+
display: block;
244+
}
245+
246+
.product-item-name-block {
247+
display: block;
248+
text-align: left;
249+
}
250+
251+
.subtotal {
252+
display: block;
253+
text-align: left;
254+
}
255+
}
256+
}
257+
}

0 commit comments

Comments
 (0)