diff --git a/app/views/post_appeals/index.html.erb b/app/views/post_appeals/index.html.erb index 982f0141f..92c0b7c34 100644 --- a/app/views/post_appeals/index.html.erb +++ b/app/views/post_appeals/index.html.erb @@ -12,7 +12,7 @@ <% @post_appeals.each do |post_appeal| %> - <%= PostPresenter.preview(post_appeal.post) %> + <%= PostPresenter.preview(post_appeal.post, :tags => "status:any") %> <%= link_to post_appeal.creator.name, user_path(post_appeal.creator) %> <%= format_text post_appeal.reason %> diff --git a/app/views/post_flags/index.html.erb b/app/views/post_flags/index.html.erb index 0f3eccf0e..39926514e 100644 --- a/app/views/post_flags/index.html.erb +++ b/app/views/post_flags/index.html.erb @@ -14,7 +14,7 @@ <% @post_flags.each do |post_flag| %> - <%= PostPresenter.preview(post_flag.post) %> + <%= PostPresenter.preview(post_flag.post, :tags => "status:any") %> <% if CurrentUser.user.is_janitor? %> <%= link_to post_flag.creator.name, user_path(post_flag.creator) %>