Skip to content

Commit

Permalink
Fixed: custom order limit alert opening issue in case of undefined or…
Browse files Browse the repository at this point in the history
…derlimit (#378)
  • Loading branch information
amansinghbais committed Oct 8, 2024
1 parent bfe0972 commit 716c4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OrderLimitPopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function showOrderLimitAlert(header: string, message: string, showInput: b
name: "setLimit",
placeholder: translate("Order fulfillment capacity"),
type: "number",
value: props.fulfillmentOrderLimit.toString(),
value: props.fulfillmentOrderLimit?.toString(),
min: 0
}] : [],
buttons: [{
Expand Down

0 comments on commit 716c4c1

Please sign in to comment.