Browse Source

walletsBalance component visibility toggle cond.

all-modes
pbca26 8 years ago
parent
commit
0ce67035c4
  1. 4
      react/src/components/dashboard/main/dashboard.render.js

4
react/src/components/dashboard/main/dashboard.render.js

@ -27,7 +27,9 @@ const DashboardRender = function() {
<CoinTile {...this.props} />
<WalletsNav {...this.props} />
<WalletsProgress {...this.props} />
<WalletsBalance {...this.props} />
<span className={ this.props.ActiveCoin.mode !== 'native' ? 'show' : 'hide' }>
<WalletsBalance {...this.props} />
</span>
<SendCoin {...this.props} />
<ReceiveCoin {...this.props.ActiveCoin} />
<WalletsData {...this.props} />

Loading…
Cancel
Save