Browse Source

Merge branch 'redux' into decouple-jsx-out-of-js

all-modes
petitPapillon 8 years ago
parent
commit
b31cc55023
  1. 6
      react/src/components/dashboard/settings.render.js

6
react/src/components/dashboard/settings.render.js

@ -307,16 +307,16 @@ export const SettingsRender = function () {
<div className="row">
<table className={ this.props.Settings && this.props.Settings.address ? 'table show' : 'table hide' }>
<tr>
<td className="width-5-percent">
<td>
<strong>{ this.props.ActiveCoin.coin }</strong>
</td>
<td>{ this.props.Settings.address }</td>
<td className="padding-left-15">{ this.props.Settings.address }</td>
</tr>
<tr>
<td>
<strong>{ this.props.ActiveCoin.coin }Wif</strong>
</td>
<td>{ this.props.Settings.wifkey }</td>
<td className="padding-left-15">{ this.props.Settings.wifkey }</td>
</tr>
</table>
</div>

Loading…
Cancel
Save