From 547f0437a94745f101793ba76ee4320c1f76c7ea Mon Sep 17 00:00:00 2001 From: Vokhmin Alexey V Date: Fri, 29 Mar 2013 16:20:06 +0400 Subject: [PATCH] show full name of assigned user --- app/views/projects/issues/_search_collaborators.html.haml | 2 +- app/views/projects/issues/_user_container.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/projects/issues/_search_collaborators.html.haml b/app/views/projects/issues/_search_collaborators.html.haml index 0d36330cd..81463a782 100644 --- a/app/views/projects/issues/_search_collaborators.html.haml +++ b/app/views/projects/issues/_search_collaborators.html.haml @@ -13,7 +13,7 @@ .container .image = image_tag(avatar_url(user, :micro), :alt => 'avatar') - %span.name= link_to(user.uname, user_path(user)) + %span.name= link_to(user.fullname, user_path(user)) %span= t('layout.issues.is_assigned') = hidden_field_tag "user-#{index}", user.id, :name => "issue[assignee_id]" .both diff --git a/app/views/projects/issues/_user_container.html.haml b/app/views/projects/issues/_user_container.html.haml index 63a37e54c..47b78037d 100644 --- a/app/views/projects/issues/_user_container.html.haml +++ b/app/views/projects/issues/_user_container.html.haml @@ -2,7 +2,7 @@ - if user .image =image_tag(avatar_url(user, :micro), :alt => 'avatar') - %span.name= link_to(user.uname, user_path(user)) + %span.name= link_to(user.fullname, user_path(user)) %span= t('layout.issues.is_assigned') - else %span= t('layout.issues.no_one_is_assigned')