diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-05-25 01:13:43 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-05-25 01:13:43 +0800 |
commit | 10ca3b6467af2bea723e661160ba5cf2a41ab3b0 (patch) | |
tree | fc625ad4b6735ce0d7391fb42f4aad2fb0a1565d /ui/app | |
parent | 2d739647b909732c26a7725cb78cf018c71d6621 (diff) | |
download | tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar.gz tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar.bz2 tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar.lz tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar.xz tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.tar.zst tangerine-wallet-browser-10ca3b6467af2bea723e661160ba5cf2a41ab3b0.zip |
Fix bug where submit was enabled when invalid params were filled out.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/bn-as-decimal-input.js | 2 | ||||
-rw-r--r-- | ui/app/components/pending-tx.js | 14 |
2 files changed, 11 insertions, 5 deletions
diff --git a/ui/app/components/bn-as-decimal-input.js b/ui/app/components/bn-as-decimal-input.js index de01f8b5f..1d292ca2a 100644 --- a/ui/app/components/bn-as-decimal-input.js +++ b/ui/app/components/bn-as-decimal-input.js @@ -67,7 +67,7 @@ BnAsDecimalInput.prototype.render = function () { const scaledNumber = this.upsize(value, scale, precision) const precisionBN = new BN(scaledNumber, 10) - onChange(precisionBN) + onChange(precisionBN, event.target.checkValidity()) }, onInvalid: (event) => { const msg = this.constructWarning() diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index eed0fd9ae..8e63f5c76 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -346,18 +346,24 @@ PendingTx.prototype.miniAccountPanelForRecipient = function () { } } -PendingTx.prototype.gasPriceChanged = function (newBN) { +PendingTx.prototype.gasPriceChanged = function (newBN, valid) { log.info(`Gas price changed to: ${newBN.toString(10)}`) const txMeta = this.gatherTxMeta() txMeta.txParams.gasPrice = '0x' + newBN.toString('hex') - this.setState({ txData: clone(txMeta) }) + this.setState({ + txData: clone(txMeta), + valid, + }) } -PendingTx.prototype.gasLimitChanged = function (newBN) { +PendingTx.prototype.gasLimitChanged = function (newBN, valid) { log.info(`Gas limit changed to ${newBN.toString(10)}`) const txMeta = this.gatherTxMeta() txMeta.txParams.gas = '0x' + newBN.toString('hex') - this.setState({ txData: clone(txMeta) }) + this.setState({ + txData: clone(txMeta), + valid, + }) } PendingTx.prototype.resetGasFields = function () { |