aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-22 11:24:44 +0800
committerDan <danjm.com@gmail.com>2018-03-22 11:24:44 +0800
commitca5bce477e9acdd5f8457b99de2c32a7b4f26e33 (patch)
treedc2b1fff66e9dc6531e2e15828dfd4de219d27a9 /ui/app/components/tx-list.js
parent3d3bd0eaf001e153eb3c7e9cea5c269bd17d1978 (diff)
downloadtangerine-wallet-browser-ca5bce477e9acdd5f8457b99de2c32a7b4f26e33.tar.gz
tangerine-wallet-browser-ca5bce477e9acdd5f8457b99de2c32a7b4f26e33.tar.zst
tangerine-wallet-browser-ca5bce477e9acdd5f8457b99de2c32a7b4f26e33.zip
Fix sender-to-recipient export and non-existent translation key.
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r--ui/app/components/tx-list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js
index 7c2da30fe..5f09d887e 100644
--- a/ui/app/components/tx-list.js
+++ b/ui/app/components/tx-list.js
@@ -110,7 +110,7 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa
if (isUnapproved) {
opts.onClick = () => showConfTxPage({ id: transactionId })
- opts.transactionStatus = this.props.t('Not Started')
+ opts.transactionStatus = this.props.t('notStarted')
} else if (transactionHash) {
opts.onClick = () => this.view(transactionHash, transactionNetworkId)
}