Skip to content

Commit

Permalink
fixed: #399 Blank header appears on return detail page if ShopifyOrde…
Browse files Browse the repository at this point in the history
…rName and HC OrderID are not present
  • Loading branch information
ashutosh7i committed Oct 19, 2024
1 parent 3193839 commit e1cf42a
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 : 'Return' }}</h1>
<!-- TODO: Fetch Customer name -->
<!-- <p>{{ translate("Customer: <customer name>")}}</p> -->
</ion-item>
Expand Down

0 comments on commit e1cf42a

Please sign in to comment.