Skip to content

Commit fef5d1d

Browse files
committed
issue with the price display in the Recently Viewed widget
1 parent c333d32 commit fef5d1d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

app/code/Magento/Catalog/view/base/web/template/product/price/regular_price.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* See COPYING.txt for license details.
55
*/
66
-->
7-
<if args="isSalable($row())">
87
<if args="getRegularPrice($row())">
98
<span css="'old-price': hasSpecialPrice($row()), 'regular-price': !hasSpecialPrice($row())">
109
<span class="price-container"
@@ -28,4 +27,3 @@
2827
</span>
2928
</span>
3029
</if>
31-
</if>

app/code/Magento/Catalog/view/base/web/template/product/price/special_price.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* See COPYING.txt for license details.
55
*/
66
-->
7-
<if args="isSalable($row()) && hasSpecialPrice($row())">
7+
<if args="hasSpecialPrice($row())">
88
<span class="special-price">
99
<span class="price-container"
1010
css="getAdjustmentCssClasses($row())">

0 commit comments

Comments
 (0)