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