diff options
author | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
---|---|---|
committer | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
commit | 4910e2f9bdf1305469edd9c55c59fb90d0e5267d (patch) | |
tree | 81309b12791e0d505b914544ea78d31f5509c50b /ui/app/components | |
parent | 6ce0bc4b11ccb7ffae4f58980db0301dc418c9c0 (diff) | |
download | tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.gz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.bz2 tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.lz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.xz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.zst tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.zip |
remove network Id 2 from explorer link and Add network Id 3
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/transaction-list-item.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 491e90c7c..f92a4ab2e 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -27,7 +27,7 @@ TransactionListItem.prototype.render = function () { let isLinkable = false const numericNet = parseInt(network) - isLinkable = numericNet === 1 || numericNet === 2 + isLinkable = numericNet === 1 || numericNet === 3 var isMsg = ('msgParams' in transaction) var isTx = ('txParams' in transaction) @@ -41,7 +41,6 @@ TransactionListItem.prototype.render = function () { } const isClickable = ('hash' in transaction && isLinkable) || isPending - return ( h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, { onClick: (event) => { |