aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFrances Pangilinan <frankie.diamond@gmail.com>2016-12-21 05:49:22 +0800
committerFrances Pangilinan <frankie.diamond@gmail.com>2016-12-21 05:49:22 +0800
commit4910e2f9bdf1305469edd9c55c59fb90d0e5267d (patch)
tree81309b12791e0d505b914544ea78d31f5509c50b /ui
parent6ce0bc4b11ccb7ffae4f58980db0301dc418c9c0 (diff)
downloadtangerine-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')
-rw-r--r--ui/app/components/transaction-list-item.js3
-rw-r--r--ui/lib/explorer-link.js2
2 files changed, 2 insertions, 3 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) => {
diff --git a/ui/lib/explorer-link.js b/ui/lib/explorer-link.js
index 2993d1cf1..dc6be2984 100644
--- a/ui/lib/explorer-link.js
+++ b/ui/lib/explorer-link.js
@@ -5,7 +5,7 @@ module.exports = function (hash, network) {
case 1: // main net
prefix = ''
break
- case 2: // morden test net
+ case 3: // morden test net
prefix = 'testnet.'
break
default: