From a3ce77831d8be8fd161832a0421e81bbcc6ff148 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 3 Mar 2016 11:57:57 +0100 Subject: [PATCH] Make jshint happy --- app/controllers/repos.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/repos.js b/app/controllers/repos.js index 76d8ce00..2592fa7e 100644 --- a/app/controllers/repos.js +++ b/app/controllers/repos.js @@ -103,7 +103,7 @@ var Controller = Ember.Controller.extend({ }, runningJobs: function() { - if(!this.get('config.pro')) { return [] }; + if(!this.get('config.pro')) { return []; } var result; result = this.store.filter('job', {}, function(job) { @@ -118,7 +118,7 @@ var Controller = Ember.Controller.extend({ }.property('config.pro'), queuedJobs: function() { - if(!this.get('config.pro')) { return [] }; + if(!this.get('config.pro')) { return []; } var result; result = this.get('store').filter('job', function(job) {