Add default value for backorders (#36607)
* Add default value for backorders * Add changelog entry
This commit is contained in:
parent
b7fd3d9e76
commit
dfe2780e6a
|
@ -23,8 +23,9 @@ export const ProductForm: React.FC< {
|
|||
<Form< Partial< Product > >
|
||||
initialValues={
|
||||
product || {
|
||||
reviews_allowed: true,
|
||||
backorders: 'no',
|
||||
name: '',
|
||||
reviews_allowed: true,
|
||||
sku: '',
|
||||
stock_quantity: 0,
|
||||
stock_status: 'instock',
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: update
|
||||
|
||||
Add default value for backorders
|
Loading…
Reference in New Issue