From 621b5750f08247e8ce1c29c7479c7df924cf945e Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 18 May 2015 15:59:54 +0200 Subject: [PATCH] fix committer has author avatar issue --- app/controllers/builds-item.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/builds-item.coffee b/app/controllers/builds-item.coffee index 50cc588a..5373764b 100644 --- a/app/controllers/builds-item.coffee +++ b/app/controllers/builds-item.coffee @@ -13,7 +13,7 @@ Controller = Ember.ObjectController.extend(GithubUrlProperties, ).property('build.state') urlAuthorGravatarImage: (-> - gravatarImage(@get('build.commit.authorEmail'), 40) + gravatarImage(@get('build.commit.committerEmail'), 40) ).property('build.commit.authorEmail') )