Skip to content

Commit

Permalink
Merge pull request #882 from amansinghbais/#878
Browse files Browse the repository at this point in the history
Fixed: null going in the list of shipping label pdf url array for print shipping label (#878)
  • Loading branch information
ymaheshwari1 authored Dec 18, 2024
2 parents 23300b9 + b324dd2 commit 80fdefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OrderLookupLabelActionsPopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default defineComponent({
shipmentPackages.map((shipmentPackage: any) => {
shipmentIds.push(shipmentPackage.shipmentId)
shippingLabelPdfUrls.push(shipmentPackage.labelImageUrl)
shipmentPackage.labelImageUrl && shippingLabelPdfUrls.push(shipmentPackage.labelImageUrl)
})
await OrderService.printShippingLabel(shipmentIds, shippingLabelPdfUrls)
Expand Down

0 comments on commit 80fdefe

Please sign in to comment.