Skip to content

Commit

Permalink
Merge pull request #379 from amansinghbais/#378
Browse files Browse the repository at this point in the history
Fixed: custom order limit alert opening issue in case of undefined orderlimit (#378)
  • Loading branch information
ravilodhi authored Oct 8, 2024
2 parents bfe0972 + 716c4c1 commit a39ca19
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 a39ca19

Please sign in to comment.