taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 9b18c87deb904d83ae5748236dff70de7c5fa656
parent 9f3a9a65f7244d837f545025b8b5bb45f5339c6f
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 12 Dec 2017 16:51:13 +0100

typos

Diffstat:
Msrc/wallet.ts | 2+-
Msrc/webex/pages/popup.tsx | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/wallet.ts b/src/wallet.ts @@ -2377,7 +2377,7 @@ export class Wallet { detail: { merchantDomain: tip.merchantDomain, amount: tip.amount, - reservePub: tip.accepted, + accepted: tip.accepted, tipId: tip.tipId, }, timestamp: tip.timestamp, diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx @@ -409,7 +409,7 @@ function formatHistoryItem(historyItem: HistoryRecord) { <i18n.Translate wrap="p"> Merchant <span>{d.merchantDomain}</span> gave a <a href={url} onClick={openTab(url)}> tip</a> of <span>{renderAmount(d.amount)}</span>. <span> </span> - {d.accepted ? null : <span>You did not accepted the tip yet.</span> } + { d.accepted ? null : <span>You did not accept the tip yet.</span> } </i18n.Translate> ); }