diff options
author | Dan Finlay <flyswatter@users.noreply.github.com> | 2017-01-19 04:17:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19 04:17:29 +0800 |
commit | 9ab7ce370bc12e10b3458c0755f0dd8488788bec (patch) | |
tree | 156b7aa954115d277628bc41b096d1060ade3c7f /ui | |
parent | 528ceff07c01371feaa147bb850452eab30ea2e0 (diff) | |
parent | 9e58505942985cd32878d1fba6496d091deb71a4 (diff) | |
download | tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar.gz tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar.bz2 tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar.lz tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar.xz tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.tar.zst tangerine-wallet-browser-9ab7ce370bc12e10b3458c0755f0dd8488788bec.zip |
Merge pull request #1024 from MetaMask/fixSignedVsSubmitted
Fix the dissplay for submitted transactions...
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/transaction-list-item-icon.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list-item-icon.js b/ui/app/components/transaction-list-item-icon.js index eca0d693a..353401099 100644 --- a/ui/app/components/transaction-list-item-icon.js +++ b/ui/app/components/transaction-list-item-icon.js @@ -41,7 +41,7 @@ TransactionIcon.prototype.render = function () { }, }) - case 'signed': + case 'submitted': return h('i.fa.fa-ellipsis-h', { style: { fontSize: '27px', |