aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-14 08:08:08 +0800
committerDan <danjm.com@gmail.com>2018-03-14 08:08:08 +0800
commit46ded45b8186c0b338f6cff811cd89c48ef1a5ab (patch)
treefd3d91e5c2ca42b41ccdb612f176efe0983928e9 /ui
parent8c7988978f05fa57bba892efb42ae0036ce25771 (diff)
downloadtangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.gz
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.bz2
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.lz
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.xz
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.zst
tangerine-wallet-browser-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.zip
Use correct var name in new-ui showRetryButton
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/tx-list-item.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js
index 453f7e95c..ebf5db19f 100644
--- a/ui/app/components/tx-list-item.js
+++ b/ui/app/components/tx-list-item.js
@@ -190,7 +190,7 @@ TxListItem.prototype.showRetryButton = function () {
const currentTxIsLatestWithNonce = lastSubmittedTxWithCurrentNonce
&& lastSubmittedTxWithCurrentNonce.id === transactionId
- return currentTxIsLatestWithNonce && Date.now() - submittedTime > 30000
+ return currentTxIsLatestWithNonce && Date.now() - transactionSubmittedTime > 30000
}
TxListItem.prototype.resubmit = function () {