X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9e46754c887e9dc2caa412942dc7e964aa48cfcf..2f9291ba5764fe104264ae7e3b6a361e11212e8b:/app/views/issues/_comments.html.erb diff --git a/app/views/issues/_comments.html.erb b/app/views/issues/_comments.html.erb index e42371465..5cb99f2f1 100644 --- a/app/views/issues/_comments.html.erb +++ b/app/views/issues/_comments.html.erb @@ -2,9 +2,9 @@ <% comments.each do |comment| %>
- <%= link_to user_thumbnail(comment.user), user_path(comment.user.display_name) %> + <%= link_to user_thumbnail(comment.user), user_path(comment.user) %>
- <%= link_to comment.user.display_name, user_path(comment.user.display_name) %>
+ <%= link_to comment.user.display_name, user_path(comment.user) %>
<%= comment.body %>
@@ -17,7 +17,7 @@
<%= form_for @new_comment, url: issue_comments_path(@issue) do |f| %> <%= richtext_area :issue_comment, :body, :cols => 10, :rows => 8, :required => true %> - <%= label_tag :reassign, t('issues.show.comments.reassign_param') %> <%= check_box_tag :reassign, true %> + <%= label_tag :reassign, t('.reassign_param') %> <%= check_box_tag :reassign, true %>

<%= submit_tag 'Submit' %>