diff --git a/src/components/Board.jsx b/src/components/Board.jsx index 6d75bcc2..45e0ed19 100644 --- a/src/components/Board.jsx +++ b/src/components/Board.jsx @@ -540,6 +540,16 @@ const Board = ({ setBodyStyle }) => { + + {omittedCount > 0 ? ( + + + {omittedCount} post{omittedCount > 1 ? "s" : ""} omitted. Click  + handleClickThread(thread.cid)} className="ttl-link">here +  to view. + + ) : null} + {renderedComments.map(reply => { return (
diff --git a/src/components/styles/Board.styled.jsx b/src/components/styles/Board.styled.jsx index 8a75b54b..f8985898 100644 --- a/src/components/styles/Board.styled.jsx +++ b/src/components/styles/Board.styled.jsx @@ -1549,6 +1549,10 @@ export const BoardForm = styled.div` #bottombar-mobile { display: none; } + + .summary { + margin-top: 10px; + } } @media (max-width: 480px) {