Remove some placeholder values (#35267)
This commit is contained in:
parent
43eeb0c997
commit
69e52c2fa0
|
@ -139,7 +139,6 @@ export const PricingSection: React.FC = () => {
|
|||
<InputControl
|
||||
{ ...regularPriceProps }
|
||||
label={ __( 'List price', 'woocommerce' ) }
|
||||
placeholder={ __( '10.59', 'woocommerce' ) }
|
||||
value={ formatCurrencyDisplayValue(
|
||||
String( regularPriceProps?.value ),
|
||||
currencyConfig,
|
||||
|
@ -161,7 +160,6 @@ export const PricingSection: React.FC = () => {
|
|||
<InputControl
|
||||
{ ...salePriceProps }
|
||||
label={ salePriceTitle }
|
||||
placeholder={ __( '8.59', 'woocommerce' ) }
|
||||
value={ formatCurrencyDisplayValue(
|
||||
String( salePriceProps?.value ),
|
||||
currencyConfig,
|
||||
|
|
|
@ -70,10 +70,6 @@ export const ProductInventorySection: React.FC = () => {
|
|||
'SKU (Stock Keeping Unit)',
|
||||
'woocommerce'
|
||||
) }
|
||||
placeholder={ __(
|
||||
'washed-oxford-button-down-shirt',
|
||||
'woocommerce'
|
||||
) }
|
||||
{ ...getInputProps( 'sku' ) }
|
||||
/>
|
||||
<div className="woocommerce-product-form__field">
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: enhancement
|
||||
|
||||
Remove some placeholder values
|
Loading…
Reference in New Issue