We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7ea4c3 + 84a5cf6 commit b106e34Copy full SHA for b106e34
src/projects/detail/containers/MessagesContainer.js
@@ -101,8 +101,9 @@ class MessagesView extends React.Component {
101
item.unread = !feed.read
102
// item.html = posts[feed.postIds[0]].body
103
item.html = feed.posts[0].body
104
- // skip over the first post since that is the topic post
105
- item.totalComments = feed.totalPosts-1
+ // Github issue#673, Don't skip over the first post like we do in dashboard feeds
+ // because here we show the first post as comment as well
106
+ item.totalComments = feed.totalPosts
107
item.messages = []
108
const _toComment = (p) => {
109
return {
0 commit comments