diff options
Modify status copy for status === 'unapproved'
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/tx-list.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js index 6a0849daf..724e86c21 100644 --- a/ui/app/components/tx-list.js +++ b/ui/app/components/tx-list.js @@ -102,6 +102,7 @@ TxList.prototype.renderTransactionListItem = function (transaction) { if (transactionStatus === 'unapproved') { opts.onClick = () => showConfTxPage({id: transActionId}) opts.className += '.tx-list-pending-item-container' + opt.transactionStatus = 'Not Started' } else if (transactionHash) { opts.onClick = () => this.view(transactionHash, transactionNetworkId) |