Validate Ethereum addresses in input fields #144

Merged
raucao merged 2 commits from feature/validate_eth_addresses into feature/signup 2019-07-24 15:30:52 +00:00
Showing only changes of commit 780afc9bc6 - Show all commits
+2 -2
View File
2
@@ -11,8 +11,8 @@ export default Component.extend({
attributes: null,
isValidAccount: computed('ethAddress', function() {
return isAddress(this.ethAddress);
isValidAccount: computed('account', function() {
return isAddress(this.account);
}),
isValidName: notEmpty('name'),