diff --git a/app/decorators/posts_decorator.rb b/app/decorators/posts_decorator.rb index 956bb7f6d..184cab574 100644 --- a/app/decorators/posts_decorator.rb +++ b/app/decorators/posts_decorator.rb @@ -57,8 +57,8 @@ class PostsDecorator < ApplicationDecorator favs = template.tag.span("♥#{post.fav_count}", class: "favorites") comments = template.tag.span "C#{post.visible_comment_count(CurrentUser)}", class: "comments" rating = template.tag.span(post.rating.upcase, class: "rating") - # status = template.tag.span(status_flags.join, class: "extras") - template.tag.div score + favs + comments + rating, class: "desc" + status = template.tag.span(status_flags.join, class: "extras") + template.tag.div title + score + favs + comments + rating + status, class: "desc" end def preview_html(t, options = {})