diff --git a/app/components/post_body/index.js b/app/components/post_body/index.js index 28ca0f0f1..ab8371972 100644 --- a/app/components/post_body/index.js +++ b/app/components/post_body/index.js @@ -88,6 +88,11 @@ export function makeMapStateToProps() { postProps.username = owner?.username || ''; } + // Disable group highlight when post is pending + if (post.id === post.pending_post_id) { + postProps.disable_group_highlight = true; + } + return { metadata: post.metadata, postProps,