diff --git a/app/views/comments/_comment_actions.html.erb b/app/views/comments/_comment_actions.html.erb
index 766bbe9e29..98369cbe43 100644
--- a/app/views/comments/_comment_actions.html.erb
+++ b/app/views/comments/_comment_actions.html.erb
@@ -11,9 +11,7 @@
<% if can_reply_to_comment?(comment) %>
<% end %>
- <% unless comment.unreviewed? %>
- <%= link_to ts("Thread"), comment %>
- <% end %>
+ <%= link_to t(".thread"), comment %>
<% if comment.depth > 0 %>
<%= link_to ts("Parent Thread"), comment_path(id: comment.thread) %>
<% end %>
diff --git a/config/locales/views/en.yml b/config/locales/views/en.yml
index 0e1b7d10e2..36122c2812 100644
--- a/config/locales/views/en.yml
+++ b/config/locales/views/en.yml
@@ -718,6 +718,8 @@ en:
tags: Tags
works: Works (%{count})
comments:
+ comment_actions:
+ thread: Thread
comment_form:
anonymous_creator: Anonymous Creator
anonymous_forewarning: While this work is anonymous, comments you post will also be listed anonymously.
diff --git a/features/comments_and_kudos/comment_moderation.feature b/features/comments_and_kudos/comment_moderation.feature
index 88c6bef253..000855cd1d 100644
--- a/features/comments_and_kudos/comment_moderation.feature
+++ b/features/comments_and_kudos/comment_moderation.feature
@@ -182,6 +182,7 @@ Feature: Comment Moderation
When I am logged in as "author"
And I view the unreviewed comments page for "Moderation"
Then I should see "A moderated reply"
+ And "Thread" should appear before "Parent Thread"
When I press "Approve"
Then I should see "Comment approved"
When I view the work "Moderation"