diff options
-rw-r--r-- | ui/app/components/tx-view.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index ed8f05e95..2bc6daae5 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -54,16 +54,16 @@ TxView.prototype.render = function () { style: { margin: '1em 0.9em', alignItems: 'center' - } + }, + onClick: () => { + this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() + }, }, [ // burger h('div.fa.fa-bars', { style: { fontSize: '1.3em', }, - onClick: () => { - this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() - } }, []), //account display |