Browse Source

header coin name fix

v0.25
pbca26 7 years ago
parent
commit
4937f1764d
  1. 3
      react/src/components/dashboard/walletsMain/walletsMain.render.js

3
react/src/components/dashboard/walletsMain/walletsMain.render.js

@ -5,6 +5,7 @@ import SendCoin from '../sendCoin/sendCoin';
import WalletsProgress from '../walletsProgress/walletsProgress'; import WalletsProgress from '../walletsProgress/walletsProgress';
import WalletsData from '../walletsData/walletsData'; import WalletsData from '../walletsData/walletsData';
import ReceiveCoin from '../receiveCoin/receiveCoin'; import ReceiveCoin from '../receiveCoin/receiveCoin';
import { getCoinTitle } from '../../../util/coinHelper';
const WalletsMainRender = function() { const WalletsMainRender = function() {
return ( return (
@ -22,7 +23,7 @@ const WalletsMainRender = function() {
<span <span
className={ `easydex-section-image ${(this.props.ActiveCoin.coin === 'KMD' || this.props.ActiveCoin.coin === 'JUMBLR' || this.props.ActiveCoin.coin === 'MESH' || this.props.ActiveCoin.coin === 'MVP' ? 'hide' : '')}` } className={ `easydex-section-image ${(this.props.ActiveCoin.coin === 'KMD' || this.props.ActiveCoin.coin === 'JUMBLR' || this.props.ActiveCoin.coin === 'MESH' || this.props.ActiveCoin.coin === 'MVP' ? 'hide' : '')}` }
style={{ marginLeft: '20px' }}> style={{ marginLeft: '20px' }}>
{ this.props.ActiveCoin.coin } { getCoinTitle(this.props.ActiveCoin.coin).name }
</span> </span>
</li> </li>
</ol> </ol>

Loading…
Cancel
Save