Allow to send 0 as price (#2620)
This commit is contained in:
parent
e1b3d5b4f3
commit
056aab2560
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ export function getShippingMethodChannelVariables(
|
||||||
channel.maxValue && orderValueRestricted ? channel.maxValue : null,
|
channel.maxValue && orderValueRestricted ? channel.maxValue : null,
|
||||||
minimumOrderPrice:
|
minimumOrderPrice:
|
||||||
channel.minValue && orderValueRestricted ? channel.minValue : null,
|
channel.minValue && orderValueRestricted ? channel.minValue : null,
|
||||||
price: channel.price || null,
|
price: channel.price,
|
||||||
})) || [],
|
})) || [],
|
||||||
removeChannels,
|
removeChannels,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue