From c89ef25be393089fb926780e06a6438b5f245730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Tue, 2 Sep 2014 13:16:53 +0200 Subject: [PATCH] Change full_name for full_name_display in assigned-to column at issues list --- app/coffee/modules/issues/list.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/coffee/modules/issues/list.coffee b/app/coffee/modules/issues/list.coffee index 0cf22a00..14c004ae 100644 --- a/app/coffee/modules/issues/list.coffee +++ b/app/coffee/modules/issues/list.coffee @@ -758,7 +758,7 @@ IssueAssignedToInlineEditionDirective = ($repo, $rootscope, popoverService) -> member = $scope.usersById[issue.assigned_to] if member ctx.imgurl = member.photo - ctx.name = member.full_name + ctx.name = member.full_name_display $el.find(".avatar").html(template(ctx))