From 7fb1c6836da9cac50e29ff861c61b782fac365e6 Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 7 Sep 2017 14:28:24 -0230 Subject: Modify status copy for status === 'unapproved' --- ui/app/components/tx-list.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui/app') 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) -- cgit