Browse Source

basilisk send res render bug fix

all-modes
pbca26 8 years ago
parent
commit
0add574d63
  1. 4
      react/src/components/dashboard/sendCoin/sendCoin.js

4
react/src/components/dashboard/sendCoin/sendCoin.js

@ -697,6 +697,8 @@ class SendCoin extends React.Component {
);
}
} else if (key === 'sendrawtransaction') {
const _lastSendToResponse = this.props.ActiveCoin.lastSendToResponse;
if (_lastSendToResponse[key] === 'success') {
return (
<span className="label label-success">true</span>
@ -707,6 +709,8 @@ class SendCoin extends React.Component {
);
}
} else if (key === 'txid' || key === 'sent') {
const _lastSendToResponse = this.props.ActiveCoin.lastSendToResponse;
return (
<span>{ _lastSendToResponse[key] }</span>
);

Loading…
Cancel
Save