Should be using value rather than name (https://github.com/woocommerce/woocommerce-blocks/pull/4187)
This commit is contained in:
parent
1dcbddc0bd
commit
a90988aebf
|
@ -37,7 +37,7 @@ const ProductDetails = ( {
|
|||
: '';
|
||||
return (
|
||||
<li
|
||||
key={ detail.name + ( detail.display || detail.name ) }
|
||||
key={ detail.name + ( detail.display || detail.value ) }
|
||||
className={ className }
|
||||
>
|
||||
{ detail.name && (
|
||||
|
|
Loading…
Reference in New Issue