commit 4fd80ee8e26f4d4b880df9736c0257456259eb9c
parent 5f68f060a67ad36b87a25ca5d182c6f2dd9eb450
Author: Marcos Gutierrez <gmarcos87@gmail.com>
Date: Fri, 31 Jan 2020 11:22:13 -0300
fix fulfillmentUrl in the history rener
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx
@@ -508,7 +508,7 @@ function formatHistoryItem(historyItem: HistoryEvent) {
}
case "payment-sent": {
- const url = historyItem.orderShortInfo.merchantBaseUrl;
+ const url = historyItem.orderShortInfo.fulfillmentUrl;
const { merchant, item } = parseSummary(
historyItem.orderShortInfo.summary
);
@@ -519,7 +519,7 @@ function formatHistoryItem(historyItem: HistoryEvent) {
const fulfillmentLinkElem = (
<Fragment>
<a
- href={historyItem.orderShortInfo.merchantBaseUrl}
+ href={url}
onClick={openTab(url)}
>
{item ? abbrev(item, 30) : null}
@@ -540,14 +540,14 @@ function formatHistoryItem(historyItem: HistoryEvent) {
);
}
case "order-accepted": {
- const url = historyItem.orderShortInfo.merchantBaseUrl;
+ const url = historyItem.orderShortInfo.fulfillmentUrl;
const { merchant, item } = parseSummary(
historyItem.orderShortInfo.summary
);
const fulfillmentLinkElem = (
<Fragment>
<a
- href={historyItem.orderShortInfo.merchantBaseUrl}
+ href={url}
onClick={openTab(url)}
>
{item ? abbrev(item, 40) : null}