|
|
@ -52,6 +52,13 @@ export const _SendFormRender = function() { |
|
|
|
} |
|
|
|
<div className="row"> |
|
|
|
<div className="col-xlg-12 form-group form-material"> |
|
|
|
{ this.props.ActiveCoin.mode === 'spv' && |
|
|
|
<button type="button" |
|
|
|
className="btn btn-default btn-send-self" |
|
|
|
onClick={ this.setSendToSelf }> |
|
|
|
Self |
|
|
|
</button> |
|
|
|
} |
|
|
|
<label |
|
|
|
className="control-label" |
|
|
|
htmlFor="kmdWalletSendTo">{ translate('INDEX.SEND_TO') }</label> |
|
|
@ -67,6 +74,13 @@ export const _SendFormRender = function() { |
|
|
|
required /> |
|
|
|
</div> |
|
|
|
<div className="col-lg-12 form-group form-material"> |
|
|
|
{ this.props.ActiveCoin.mode === 'spv' && |
|
|
|
<button type="button" |
|
|
|
className="btn btn-default btn-send-self" |
|
|
|
onClick={ this.setSendAmountAll }> |
|
|
|
All |
|
|
|
</button> |
|
|
|
} |
|
|
|
<label |
|
|
|
className="control-label" |
|
|
|
htmlFor="kmdWalletAmount"> |
|
|
|