From 4955454440079f3beeaf0cbb7fb8bf82c113b231 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 17 Oct 2017 12:06:47 +0200 Subject: fix history rendering issue caused by i18n --- src/webex/pages/popup.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/webex') diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx index 9c012449c..76fa79a19 100644 --- a/src/webex/pages/popup.tsx +++ b/src/webex/pages/popup.tsx @@ -358,7 +358,7 @@ function formatHistoryItem(historyItem: HistoryRecord) { return ( Started to withdraw - {" "}{renderAmount(d.requestedAmount)}{" "} + {" "}{renderAmount(d.requestedAmount)} from {exchange} ({pub}). ); @@ -367,7 +367,7 @@ function formatHistoryItem(historyItem: HistoryRecord) { const link = chrome.extension.getURL("view-contract.html"); return ( - Merchant {abbrev(d.merchantName, 15)} offered{" "} + Merchant {abbrev(d.merchantName, 15)} offered contract {abbrev(d.contractTermsHash)}. ); @@ -389,7 +389,7 @@ function formatHistoryItem(historyItem: HistoryRecord) { return ( Paid {renderAmount(d.amount)} to merchant {merchantElem}. - {" "} + ({fulfillmentLinkElem}) ); -- cgit v1.2.3