diff --git a/app/controllers/index.js b/app/controllers/index.js index 387e259..6d0195c 100644 --- a/app/controllers/index.js +++ b/app/controllers/index.js @@ -26,7 +26,7 @@ export default Controller.extend({ return this.get('model.proposals') .map((proposal) => { let contributor = this.get('contributors') - .findBy('id', proposal.get('recipientId')); + .findBy('id', proposal.get('recipientId').toString()); proposal.set('contributor', contributor);