From 780afc9bc6cde9480ae383208d3bc5cba8563b8d Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Wed, 24 Jul 2019 11:56:51 +0200 Subject: [PATCH] Fix wrong property name --- app/components/add-contributor/component.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/add-contributor/component.js b/app/components/add-contributor/component.js index 84ab38f..118aba3 100644 --- a/app/components/add-contributor/component.js +++ b/app/components/add-contributor/component.js @@ -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'),