Fix Mini-Cart price disappearing on hover (#43550)
* Fix Mini-Cart price disappearing on hover * Add changefile(s) from automation for the following project(s): woocommerce-blocks --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
5d87130b43
commit
aa661f2234
|
@ -49,7 +49,7 @@ const renderMiniCartFrontend = () => {
|
|||
style: el.dataset.style ? JSON.parse( el.dataset.style ) : {},
|
||||
miniCartIcon: el.dataset.miniCartIcon,
|
||||
addToCartBehaviour: el.dataset.addToCartBehaviour || 'none',
|
||||
hasHiddenPrice: el.dataset.hasHiddenPrice,
|
||||
hasHiddenPrice: el.dataset.hasHiddenPrice !== 'false',
|
||||
priceColor: el.dataset.priceColor
|
||||
? JSON.parse( el.dataset.priceColor )
|
||||
: {},
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix Mini-Cart total price disappearing when hovering or focusing the Mini-Cart button
|
Loading…
Reference in New Issue