diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 13:43:49 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-25 13:43:49 +0800 |
commit | ebb2d38480f6fe4755a487a0b62ef6055e1e8d56 (patch) | |
tree | 8cc1de016519faab9f52cdcac4ca68ec01379341 /ui/app/send-v2.js | |
parent | e89ae877aa70541bdca1fafd5e50926200c85214 (diff) | |
download | tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar.gz tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar.bz2 tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar.lz tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar.xz tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.tar.zst tangerine-wallet-browser-ebb2d38480f6fe4755a487a0b62ef6055e1e8d56.zip |
Remove memo input
Diffstat (limited to 'ui/app/send-v2.js')
-rw-r--r-- | ui/app/send-v2.js | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ui/app/send-v2.js b/ui/app/send-v2.js index 8b49f7307..3775603b8 100644 --- a/ui/app/send-v2.js +++ b/ui/app/send-v2.js @@ -372,7 +372,7 @@ SendTransactionScreen.prototype.renderForm = function () { this.renderGasRow(), - this.renderMemoRow(), + // this.renderMemoRow(), ]) } @@ -381,9 +381,9 @@ SendTransactionScreen.prototype.renderFooter = function () { const { goHome, clearSend, - errors: { amount: amountError, to: toError } + errors: { amount: amountError, to: toError }, } = this.props - + const noErrors = amountError === null && toError === null const errorClass = noErrors ? '' : '__disabled' @@ -395,6 +395,7 @@ SendTransactionScreen.prototype.renderFooter = function () { }, }, 'Cancel'), h(`button.send-v2__next-btn${errorClass}`, { + onClick: event => this.onSubmit(event), }, 'Next'), ]) } @@ -435,8 +436,15 @@ SendTransactionScreen.prototype.onSubmit = function (event) { selectedToken, toAccounts, clearSend, + errors: { amount: amountError, to: toError }, } = this.props + const noErrors = amountError === null && toError === null + + if (!noErrors) { + return + } + this.addToAddressBookIfNew(to) const txParams = { |