Skip to content

Commit 030917f

Browse files
committed
Fixed Minicart Pricing Issue
1 parent c717ee0 commit 030917f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Checkout/CustomerData/DefaultItem.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2015 Adobe
4+
* All Rights Reserved.
55
*/
66

77
namespace Magento\Checkout\CustomerData;
@@ -84,7 +84,7 @@ protected function doGetItemData()
8484
{
8585
$imageHelper = $this->imageHelper->init($this->getProductForThumbnail(), 'mini_cart_product_thumbnail');
8686
$productName = $this->escaper->escapeHtml($this->item->getProduct()->getName());
87-
87+
$this->item->setConvertedPrice($this->item->getPrice());
8888
return [
8989
'options' => $this->getOptionList(),
9090
'qty' => $this->item->getQty() * 1,

0 commit comments

Comments
 (0)