aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx/confirm-send-ether.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-28 09:53:57 +0800
committerDan <danjm.com@gmail.com>2018-03-28 10:11:20 +0800
commit74ac3bb2a7130675a10e1701d569b2c35a948f8f (patch)
treecd31e0a09a44c451ba81357e6436dc69ab005e85 /ui/app/components/pending-tx/confirm-send-ether.js
parent8e6ab7df052a5ca43b15edc9c308c626bb23e64c (diff)
downloadtangerine-wallet-browser-74ac3bb2a7130675a10e1701d569b2c35a948f8f.tar.gz
tangerine-wallet-browser-74ac3bb2a7130675a10e1701d569b2c35a948f8f.tar.zst
tangerine-wallet-browser-74ac3bb2a7130675a10e1701d569b2c35a948f8f.zip
Confirm send token detects if balance is sufficient for gas.
Diffstat (limited to 'ui/app/components/pending-tx/confirm-send-ether.js')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js
index 14077b5e8..b775e0ad0 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -16,7 +16,7 @@ const {
const {
getGasTotal,
isBalanceSufficient,
-} = require('../send/send-utils')
+} = require('../send/send-utils')
const GasFeeDisplay = require('../send/gas-fee-display-v2')
const t = require('../../../i18n')
const SenderToRecipient = require('../sender-to-recipient')
@@ -343,7 +343,7 @@ ConfirmSendEther.prototype.render = function () {
className: classnames({
'confirm-screen-section-column--with-error': errors['insufficientFunds'],
'confirm-screen-section-column': !errors['insufficientFunds'],
- })
+ }),
}, [
h('span.confirm-screen-label', [ t('total') + ' ' ]),
h('div.confirm-screen-total-box__subtitle', [ t('amountPlusGas') ]),