aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/account-panel.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-26 07:54:43 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-26 07:54:43 +0800
commit5669f44300fc0493ce2c1221f0c5531eb3850882 (patch)
tree07d36638c98cf0c8a6a450cdf0d1b05d0d442236 /ui/app/accounts/account-panel.js
parent294b16a275d35983eb9f0e720a84ef95e0fad186 (diff)
downloadtangerine-wallet-browser-5669f44300fc0493ce2c1221f0c5531eb3850882.tar.gz
tangerine-wallet-browser-5669f44300fc0493ce2c1221f0c5531eb3850882.tar.zst
tangerine-wallet-browser-5669f44300fc0493ce2c1221f0c5531eb3850882.zip
Add number indicating pending txs to account list
Diffstat (limited to 'ui/app/accounts/account-panel.js')
-rw-r--r--ui/app/accounts/account-panel.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/app/accounts/account-panel.js b/ui/app/accounts/account-panel.js
index 5ade7fe0e..8afb7308d 100644
--- a/ui/app/accounts/account-panel.js
+++ b/ui/app/accounts/account-panel.js
@@ -34,6 +34,7 @@ NewComponent.prototype.render = function() {
}, [
h('.identicon-wrapper.flex-column.flex-center.select-none', [
+ this.pendingOrNot(),
h(Identicon, {
address: identity.address
}),
@@ -61,3 +62,9 @@ NewComponent.prototype.render = function() {
])
)
}
+
+NewComponent.prototype.pendingOrNot = function() {
+ const pending = this.props.pending
+ if (pending.length === 0) return null
+ return h('.pending-dot', pending.length)
+}