aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-12-21 06:14:03 +0800
committerGitHub <noreply@github.com>2016-12-21 06:14:03 +0800
commitde22ab2090ca7d7929dbba188476a18d9d5f50d0 (patch)
treef5fc945434bda757f1763905d57b29198c852d23 /ui/app/components
parent6ce0bc4b11ccb7ffae4f58980db0301dc418c9c0 (diff)
parent05e62cbc17889f1020c5ec93456b799bb4ad2b4c (diff)
downloadtangerine-wallet-browser-de22ab2090ca7d7929dbba188476a18d9d5f50d0.tar.gz
tangerine-wallet-browser-de22ab2090ca7d7929dbba188476a18d9d5f50d0.tar.zst
tangerine-wallet-browser-de22ab2090ca7d7929dbba188476a18d9d5f50d0.zip
Merge pull request #943 from MetaMask/fixExplorerLink
Fix explorer link
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/transaction-list-item.js3
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) => {