diff --git a/webapp/components/post_view/components/reaction_list_container.jsx b/webapp/components/post_view/components/reaction_list_container.jsx index e21bfa24b5..3ee8f73a37 100644 --- a/webapp/components/post_view/components/reaction_list_container.jsx +++ b/webapp/components/post_view/components/reaction_list_container.jsx @@ -82,17 +82,17 @@ export default class ReactionListContainer extends React.Component { } render() { - if (!this.props.post.has_reactions) { - return null; + if (this.props.post.has_reactions && this.state.reactions.length > 0) { + return ( + + ); } - return ( - - ); + return null; } }