diff options
-rw-r--r-- | web/react/components/post_list.jsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx index 47ecc1680..97f9fa943 100644 --- a/web/react/components/post_list.jsx +++ b/web/react/components/post_list.jsx @@ -447,12 +447,10 @@ module.exports = React.createClass({ <div className="new-seperator"> <hr id="new_message" className="new-seperator__hr" /> <div className="new-seperator__text">New Messages</div> - {postCtl} </div> ); - } else { - postCtls.push(postCtl); } + postCtls.push(postCtl); previousPostDay = utils.getDateForUnixTicks(post.create_at); } |