Use full names in emoji tooltip

This commit is contained in:
Douwe Maan 2015-12-02 13:59:21 +01:00
parent 4d67a2909f
commit b7cac5a8da
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ module IssuesHelper
def emoji_author_list(notes, current_user)
list = notes.map do |note|
note.author == current_user ? "me" : note.author.username
note.author == current_user ? "me" : note.author.name
end
list.join(", ")