Merge pull request #191 from mirumee/fix/weight-based-shippings

Fix weight based shipping adding
This commit is contained in:
Marcin Gębala 2019-09-30 13:46:12 +02:00 committed by GitHub
commit e8d14fa31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
} }
}) })
} }