diff --git a/js/src/forum/components/Post.js b/js/src/forum/components/Post.js index de9aa4b17..221c9fee4 100644 --- a/js/src/forum/components/Post.js +++ b/js/src/forum/components/Post.js @@ -44,6 +44,7 @@ export default class Post extends Component { attrs.className = this.classes(attrs.className).join(' '); const controls = PostControls.controls(this.attrs.post, this).toArray(); + const footerItems = this.footerItems().toArray(); return (
@@ -71,9 +72,7 @@ export default class Post extends Component { )} - +
); diff --git a/less/forum/Post.less b/less/forum/Post.less index d0af5abac..3f3761bd7 100644 --- a/less/forum/Post.less +++ b/less/forum/Post.less @@ -247,9 +247,6 @@ a { font-weight: bold; } - .Post-footer { - margin-bottom: 0; - } } .EventPost-info { font-size: 14px; @@ -287,6 +284,10 @@ font-size: 14px; margin-right: 5px; } + + &:empty { + display: none; + } } .Post-actions { margin-top: -5px;