diff options
-rw-r--r-- | ui/app/components/identicon.js | 2 | ||||
-rw-r--r-- | ui/app/css/lib.css | 4 | ||||
-rw-r--r-- | ui/app/send.js | 8 |
3 files changed, 8 insertions, 6 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js index c17bd5122..4b2bf899e 100644 --- a/ui/app/components/identicon.js +++ b/ui/app/components/identicon.js @@ -40,7 +40,7 @@ IdenticonComponent.prototype.componentDidMount = function () { var container = findDOMNode(this) var diameter = state.diameter || this.defaultDiameter - var imageify = state.imageify + var imageify = state.imageify === undefined ? true : state.imageify var img = iconFactory.iconForAddress(address, diameter, imageify) container.appendChild(img) } diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css index f17882b9b..dca73a6e8 100644 --- a/ui/app/css/lib.css +++ b/ui/app/css/lib.css @@ -218,3 +218,7 @@ hr.horizontal-line { display: flex; align-items: center; } + +.invisible { + visibility: hidden; +}
\ No newline at end of file diff --git a/ui/app/send.js b/ui/app/send.js index 82c378dd2..4b501a7b5 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -61,7 +61,7 @@ SendTransactionScreen.prototype.render = function () { }, }, [ - // invisible placeholder for later + // back button h('i.fa.fa-arrow-left.fa-lg.cursor-pointer.color-orange', { onClick: this.back.bind(this), }), @@ -74,10 +74,8 @@ SendTransactionScreen.prototype.render = function () { }), ]), - // small accounts nav - h('i.fa.fa-users.fa-lg.cursor-pointer.color-orange', { - onClick: this.navigateToAccounts.bind(this), - }), + // invisible place holder + h('i.fa.fa-users.fa-lg.invisible'), ]), |