diff options
-rw-r--r-- | app/views/packages/_changelog_entry.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/packages/_changelog_entry.html.erb b/app/views/packages/_changelog_entry.html.erb index 3488c3f..4c4bd96 100644 --- a/app/views/packages/_changelog_entry.html.erb +++ b/app/views/packages/_changelog_entry.html.erb @@ -1,7 +1,7 @@ <li class="list-group-item"> <strong><%= annotate_bugs changelog[:message].lines.first %></strong> <br> - <%= changelog[:message].lines[1..-1].map {|line| annotate_bugs line}.safe_join %> + <%= safe_join(changelog[:message].lines[1..-1].map {|line| annotate_bugs line}, '') %> <br> <div class="kk-byline"> <%= mail_to changelog[:email], changelog[:author] %>, |