Skip to content

Commit

Permalink
Merge pull request #405 from ashutosh7i/receiving/399
Browse files Browse the repository at this point in the history
fixed: Blank header appears on return detail page if ShopifyOrderName and HC OrderID are not present (#399)
  • Loading branch information
ymaheshwari1 authored Oct 21, 2024
2 parents 3193839 + 047fce5 commit 4e897b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ReturnDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<main>
<div class="doc-id">
<ion-item lines="none">
<h1>{{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId }}</h1>
<h1> {{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId ? current.hcOrderId : current.externalId ? current.externalId : translate("Return Details") }}</h1>
<!-- TODO: Fetch Customer name -->
<!-- <p>{{ translate("Customer: <customer name>")}}</p> -->
</ion-item>
Expand Down

0 comments on commit 4e897b0

Please sign in to comment.