From e1cf42a5b8a5c50fe6c05498726c60d9f1dce2ab Mon Sep 17 00:00:00 2001 From: Aashutosh soni Date: Sat, 19 Oct 2024 14:39:17 +0530 Subject: [PATCH 1/2] fixed: #399 Blank header appears on return detail page if ShopifyOrderName and HC OrderID are not present --- src/views/ReturnDetails.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ReturnDetails.vue b/src/views/ReturnDetails.vue index 52508f0e..1c5d51cd 100644 --- a/src/views/ReturnDetails.vue +++ b/src/views/ReturnDetails.vue @@ -11,7 +11,7 @@
-

{{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId }}

+

{{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId ? current.hcOrderId : current.externalId ? current.externalId : 'Return' }}

From 047fce5626c4e2f364fd921f57757317ada90a41 Mon Sep 17 00:00:00 2001 From: Aashutosh soni Date: Sun, 20 Oct 2024 19:37:18 +0530 Subject: [PATCH 2/2] fix: updated static Return text to internationalized text --- src/views/ReturnDetails.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ReturnDetails.vue b/src/views/ReturnDetails.vue index 1c5d51cd..4b77b2f2 100644 --- a/src/views/ReturnDetails.vue +++ b/src/views/ReturnDetails.vue @@ -11,7 +11,7 @@
-

{{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId ? current.hcOrderId : current.externalId ? current.externalId : 'Return' }}

+

{{ current.shopifyOrderName ? current.shopifyOrderName : current.hcOrderId ? current.hcOrderId : current.externalId ? current.externalId : translate("Return Details") }}