From c020debf6d34fdd07da9346eccde6fe22da0b513 Mon Sep 17 00:00:00 2001 From: Alec Armbruster <35377827+alectrocute@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:44:17 -0400 Subject: [PATCH] use span --- src/shared/components/comment/comment-node.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/shared/components/comment/comment-node.tsx b/src/shared/components/comment/comment-node.tsx index 0fe43e2..c0d9d31 100644 --- a/src/shared/components/comment/comment-node.tsx +++ b/src/shared/components/comment/comment-node.tsx @@ -315,28 +315,28 @@ export class CommentNode extends Component { )} {this.isPostCreator && ( -
{I18NextService.i18n.t("op")} -
+ )} {isMod_ && ( -
+ {I18NextService.i18n.t("mod")} -
+ )} {isAdmin_ && ( -
+ {I18NextService.i18n.t("admin")} -
+ )} {cv.creator.bot_account && ( -
+ {I18NextService.i18n.t("bot_account").toLowerCase()} -
+ )} {this.props.showCommunity && ( <> -- 2.44.1