From 1d0fb6468e83f6b99d16f15e1bd2a095e67c6380 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Tue, 2 Feb 2016 11:45:59 +0100 Subject: [PATCH] Fix job times updating on build view --- app/controllers/repo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/repo.js b/app/controllers/repo.js index db3710b2..7b768291 100644 --- a/app/controllers/repo.js +++ b/app/controllers/repo.js @@ -59,7 +59,7 @@ export default Ember.Controller.extend({ updateTimesService.push(this.get('build')); updateTimesService.push(this.get('builds')); - updateTimesService.push(this.get('jobs')); + updateTimesService.push(this.get('build.jobs')); }, deactivate() {