diff options
author | brunobar79 <brunobar79@gmail.com> | 2018-07-27 09:22:39 +0800 |
---|---|---|
committer | brunobar79 <brunobar79@gmail.com> | 2018-07-27 09:22:39 +0800 |
commit | 6886429f0b74b8f281818fb03484cccd0e0b8ed0 (patch) | |
tree | 2ee7698a5df79a92e515786f85b1902c232dc293 /old-ui | |
parent | bea1cf3f3c7527109b12b13427ea16f428b2790a (diff) | |
download | tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar.gz tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar.bz2 tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar.lz tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar.xz tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.tar.zst tangerine-wallet-browser-6886429f0b74b8f281818fb03484cccd0e0b8ed0.zip |
fix linting errors
Diffstat (limited to 'old-ui')
-rw-r--r-- | old-ui/app/components/transaction-list-item.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/old-ui/app/components/transaction-list-item.js b/old-ui/app/components/transaction-list-item.js index f479ce666..b493d0f0d 100644 --- a/old-ui/app/components/transaction-list-item.js +++ b/old-ui/app/components/transaction-list-item.js @@ -40,7 +40,7 @@ TransactionListItem.prototype.showRetryButton = function () { const currentNonce = txParams.nonce const currentNonceTxs = transactions.filter(tx => tx.txParams.nonce === currentNonce) const currentNonceSubmittedTxs = currentNonceTxs.filter(tx => tx.status === 'submitted') - const currentSubmittedTxs = transactions.filter(tx => tx.status === 'submitted') + const currentSubmittedTxs = transactions.filter(tx => tx.status === 'submitted') const lastSubmittedTxWithCurrentNonce = currentNonceSubmittedTxs[0] const currentTxIsLatestWithNonce = lastSubmittedTxWithCurrentNonce && lastSubmittedTxWithCurrentNonce.id === transaction.id |