diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-11-12 07:37:22 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-11-12 07:37:22 +0800 |
commit | 0c23925c23ec620feadd97157e804ffa6d1003e6 (patch) | |
tree | 4e01897d5a51fb9d34cc9563614a7a57c4817392 /ui | |
parent | 3828edf6a4458a59161c445587f581c14baf50fe (diff) | |
download | tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar.gz tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar.bz2 tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar.lz tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar.xz tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.tar.zst tangerine-wallet-browser-0c23925c23ec620feadd97157e804ffa6d1003e6.zip |
Fix lint rules for ternary operator placement.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pending-tx.js | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index 1fc2f47d0..96f968929 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -30,22 +30,22 @@ PendingTx.prototype.render = function () { } `), - txData.simulationFails - ? h('.error', { - style: { - marginLeft: 50, - fontSize: '0.9em', - }, - }, 'Transaction Error. Exception thrown in contract code.') + txData.simulationFails ? + h('.error', { + style: { + marginLeft: 50, + fontSize: '0.9em', + }, + }, 'Transaction Error. Exception thrown in contract code.') : null, - state.insufficientBalance - ? h('span.error', { - style: { - marginLeft: 50, - fontSize: '0.9em', - }, - }, 'Insufficient balance for transaction') + state.insufficientBalance ? + h('span.error', { + style: { + marginLeft: 50, + fontSize: '0.9em', + }, + }, 'Insufficient balance for transaction') : null, // send + cancel @@ -57,10 +57,10 @@ PendingTx.prototype.render = function () { }, }, [ - state.insufficientBalance - ? h('button.btn-green', { - onClick: state.buyEth, - }, 'Buy Ether') + state.insufficientBalance ? + h('button.btn-green', { + onClick: state.buyEth, + }, 'Buy Ether') : null, h('button.confirm', { |