diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb index 1ec571633..dcf02d084 100644 --- a/app/views/comments/_comment.html.erb +++ b/app/views/comments/_comment.html.erb @@ -36,7 +36,7 @@ <% if comment.user.hidden? || comment.user.erased? %> <%= t("comments.comment.user_deleted") %> <% else %> - <%= comment.user.name %> + <%= link_to comment.user.name, user_path(comment.user) %> <% if comment.user.official? %>  •  diff --git a/app/views/shared/_author_info.html.erb b/app/views/shared/_author_info.html.erb index ee5c1f749..b51d3a261 100644 --- a/app/views/shared/_author_info.html.erb +++ b/app/views/shared/_author_info.html.erb @@ -7,7 +7,7 @@ <% else %> - <%= resource.author.name %> + <%= link_to resource.author.name, user_path(resource.author) %> <% if resource.author.official? %>  •