From 31a1f21dcd3ff8d767886b48d1dfa16f7a68005c Mon Sep 17 00:00:00 2001 From: Manuel Wiedenmann Date: Sun, 8 Apr 2018 02:13:07 +0200 Subject: [PATCH] Fix linting --- app/routes/proposals/new.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routes/proposals/new.js b/app/routes/proposals/new.js index 4c3110c..657e6b2 100644 --- a/app/routes/proposals/new.js +++ b/app/routes/proposals/new.js @@ -4,12 +4,12 @@ import Route from 'ember-route'; export default Route.extend({ kredits: injectService(), - setupController(controller, model) { + setupController(controller) { this._super(...arguments); this.get('kredits').getContributors() .then((contributors) => { - this.controller.set('contributors', contributors); + controller.set('contributors', contributors); }); } });