|
@ -26,9 +26,7 @@ export const AddressActionsBasiliskModeRender = function(address) { |
|
|
onClick={ () => this._validateAddressBasilisk(address) }> |
|
|
onClick={ () => this._validateAddressBasilisk(address) }> |
|
|
<i className="icon fa-info-circle"></i> |
|
|
<i className="icon fa-info-circle"></i> |
|
|
</span> |
|
|
</span> |
|
|
<QRModal |
|
|
<QRModal content={ address } /> |
|
|
content={address} |
|
|
|
|
|
/> |
|
|
|
|
|
</td> |
|
|
</td> |
|
|
); |
|
|
); |
|
|
}; |
|
|
}; |
|
@ -45,9 +43,7 @@ export const AddressActionsNonBasiliskModeRender = function(address, type) { |
|
|
onClick={ () => this._copyCoinAddress(address) }> |
|
|
onClick={ () => this._copyCoinAddress(address) }> |
|
|
<i className="icon wb-copy"></i> { translate('INDEX.COPY') } |
|
|
<i className="icon wb-copy"></i> { translate('INDEX.COPY') } |
|
|
</button> |
|
|
</button> |
|
|
<QRModal |
|
|
<QRModal content={ address } /> |
|
|
content={address} |
|
|
|
|
|
/> |
|
|
|
|
|
</td> |
|
|
</td> |
|
|
); |
|
|
); |
|
|
}; |
|
|
}; |
|
@ -76,8 +72,9 @@ export const ReceiveCoinRender = function() { |
|
|
<header className="panel-heading"> |
|
|
<header className="panel-heading"> |
|
|
{this.isNativeMode() && |
|
|
{this.isNativeMode() && |
|
|
<div className="panel-actions"> |
|
|
<div className="panel-actions"> |
|
|
<div className={ 'dropdown' + (this.state.openDropMenu ? ' open' : '') } |
|
|
<div |
|
|
onClick={ this.openDropMenu }> |
|
|
className={ 'dropdown' + (this.state.openDropMenu ? ' open' : '') } |
|
|
|
|
|
onClick={ this.openDropMenu }> |
|
|
<a className="dropdown-toggle white btn btn-warning"> |
|
|
<a className="dropdown-toggle white btn btn-warning"> |
|
|
<i className="icon md-arrows margin-right-10"></i> { translate('INDEX.GET_NEW_ADDRESS') } |
|
|
<i className="icon md-arrows margin-right-10"></i> { translate('INDEX.GET_NEW_ADDRESS') } |
|
|
<span className="caret"></span> |
|
|
<span className="caret"></span> |
|
|