Merge pull request #191 from mirumee/fix/weight-based-shippings
Fix weight based shipping adding
This commit is contained in:
commit
e8d14fa31a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ const ShippingZoneDetailsDialogs: React.StatelessComponent<
|
||||||
name: formData.name,
|
name: formData.name,
|
||||||
price: formData.isFree ? 0 : parseFloat(formData.price),
|
price: formData.isFree ? 0 : parseFloat(formData.price),
|
||||||
shippingZone: id,
|
shippingZone: id,
|
||||||
type: ShippingMethodTypeEnum.PRICE
|
type: params.type
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue