aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/add-token.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-03-03 06:37:25 +0800
committerGitHub <noreply@github.com>2018-03-03 06:37:25 +0800
commit0c163dcb32ddafde8a8ed3e9e21be552a5eeeed5 (patch)
tree88dc0feb55a5708474d72505ae3e6ff41dff1898 /old-ui/app/add-token.js
parent6574f0b57b0fc9e3542f803403cca5c3920ee2e9 (diff)
downloadtangerine-wallet-browser-0c163dcb32ddafde8a8ed3e9e21be552a5eeeed5.tar.gz
tangerine-wallet-browser-0c163dcb32ddafde8a8ed3e9e21be552a5eeeed5.tar.zst
tangerine-wallet-browser-0c163dcb32ddafde8a8ed3e9e21be552a5eeeed5.zip
Allow adding 0 balance tokens in old ui and editing custom token info in new (#3395)
* Shows tokens with 0 balance in old ui; goHome after adding tokens. * Allow users to edit custom token info when not autofilled. (New UI add token screen).
Diffstat (limited to 'old-ui/app/add-token.js')
-rw-r--r--old-ui/app/add-token.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/old-ui/app/add-token.js b/old-ui/app/add-token.js
index 8a3e66978..e869ac39a 100644
--- a/old-ui/app/add-token.js
+++ b/old-ui/app/add-token.js
@@ -156,6 +156,9 @@ AddTokenScreen.prototype.render = function () {
const { address, symbol, decimals } = this.state
this.props.dispatch(actions.addToken(address.trim(), symbol.trim(), decimals))
+ .then(() => {
+ this.props.dispatch(actions.goHome())
+ })
},
}, 'Add'),
]),