diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 7e7ca24ad..34cfef7c0 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -27,6 +27,7 @@ const txHelper = require('../lib/tx-helper') const SandwichExpando = require('sandwich-expando') const MenuDroppo = require('menu-droppo') const DropMenuItem = require('./components/drop-menu-item') +const NetworkIndicator = require('./components/network') module.exports = connect(mapStateToProps)(App) @@ -46,6 +47,7 @@ function mapStateToProps(state) { unconfTxs: state.metamask.unconfTxs, unconfMsgs: state.metamask.unconfMsgs, menuOpen: state.appState.menuOpen, + network: state.metamask.network, } } @@ -109,20 +111,21 @@ App.prototype.renderAppBar = function(){ }, state.isUnlocked && [ // mini logo - h('img', { - height: 24, - width: 24, - src: '/images/icon-128.png', - }), + // h('img', { + // height: 24, + // width: 24, + // src: '/images/icon-128.png', + // }), + h(NetworkIndicator, {network: this.props.network}), // metamask name h('h1', 'MetaMask'), - // hamburger h(SandwichExpando, { width: 16, barHeight: 2, padding: 0, + paddingLeft: '200px', isOpen: state.menuOpen, color: 'rgb(247,146,30)', onClick: (event) => { |