Skip to content

Commit 16681cf

Browse files
authored
ENGCOM-5779: #24441 : Minicart height calculated incorrectly when child items contain margins #24451
2 parents 1337169 + b6b8efb commit 16681cf

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Checkout/view/frontend/web/js

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ define([
347347
if ($(this).find('.options').length > 0) {
348348
$(this).collapsible();
349349
}
350-
outerHeight = $(this).outerHeight();
350+
outerHeight = $(this).outerHeight(true);
351351

352352
if (counter-- > 0) {
353353
height += outerHeight;

0 commit comments

Comments
 (0)