From 88f89cb9530cfaea0b82c8a86248d7d40a9f081d Mon Sep 17 00:00:00 2001 From: Dessalines <dessalines@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:11:40 -0400 Subject: [PATCH] Fixing comment report showing dot. (#1989) * Fixing comment report showing dot. * Using list-unstyled instead of removing <ul and <li --- src/shared/components/comment/comment-node.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/comment/comment-node.tsx b/src/shared/components/comment/comment-node.tsx index 4bfd623..2576cda 100644 --- a/src/shared/components/comment/comment-node.tsx +++ b/src/shared/components/comment/comment-node.tsx @@ -284,7 +284,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> { node.comment_view.counts.child_count > 0; return ( - <li className="comment"> + <li className="comment list-unstyled"> <article id={`comment-${cv.comment.id}`} className={classNames(`details comment-node py-2`, { -- 2.44.1