aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item.js
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-01-17 02:55:32 +0800
committerGitHub <noreply@github.com>2017-01-17 02:55:32 +0800
commit5dd5619e5db13370c1073246b51d6595f82ed7aa (patch)
treed160676084c7c3029468ec9633598b0e92745645 /ui/app/components/transaction-list-item.js
parent15e91f823ce5bc09410b1985aff34ef00825da5b (diff)
parente8e06542e47b41668f196b6db54290490003845b (diff)
downloadtangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.gz
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.tar.zst
tangerine-wallet-browser-5dd5619e5db13370c1073246b51d6595f82ed7aa.zip
Merge branch 'master' into dev
Diffstat (limited to 'ui/app/components/transaction-list-item.js')
-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 bcd50c333..95e850264 100644
--- a/ui/app/components/transaction-list-item.js
+++ b/ui/app/components/transaction-list-item.js
@@ -28,7 +28,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)
@@ -42,7 +42,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) => {