From 5669f44300fc0493ce2c1221f0c5531eb3850882 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 25 May 2016 16:54:43 -0700 Subject: Add number indicating pending txs to account list --- ui/app/accounts/account-panel.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ui/app/accounts/account-panel.js') 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) +} -- cgit v1.2.3