diff --git a/src/core/client/stream/tabs/Comments/Stream/AllCommentsTab/AllCommentsTabContainer.tsx b/src/core/client/stream/tabs/Comments/Stream/AllCommentsTab/AllCommentsTabContainer.tsx index f68e914dd..c7dc1545b 100644 --- a/src/core/client/stream/tabs/Comments/Stream/AllCommentsTab/AllCommentsTabContainer.tsx +++ b/src/core/client/stream/tabs/Comments/Stream/AllCommentsTab/AllCommentsTabContainer.tsx @@ -153,13 +153,20 @@ export const AllCommentsTabContainer: FunctionComponent = props => { size="oneAndAHalf" className={styles.stream} > - {comments.length <= 0 ? ( + {comments.length <= 0 && props.story.isClosed && ( + + There are no comments on this story. + + )} + {comments.length <= 0 && !props.story.isClosed && ( There are no comments yet. Why don't you write one? - ) : ( + )} + {comments.length > 0 && + !props.story.isClosed && comments.map(comment => ( = props => { - )) - )} + ))} {props.relay.hasMore() && (