diff --git a/src/shared/components/comment/comment-node.tsx b/src/shared/components/comment/comment-node.tsx index 83477864..fae636e9 100644 --- a/src/shared/components/comment/comment-node.tsx +++ b/src/shared/components/comment/comment-node.tsx @@ -240,23 +240,23 @@ export class CommentNode extends Component { {cv.comment.distinguished && ( )} - {isMod_ && ( -
- {i18n.t("mod")} -
- )} - {isAdmin_ && ( -
- {i18n.t("admin")} -
- )} {this.isPostCreator && (
{i18n.t("creator")}
)} + {isMod_ && ( +
+ {i18n.t("mod")} +
+ )} + {isAdmin_ && ( +
+ {i18n.t("admin")} +
+ )} {cv.creator.bot_account && ( -
+
{i18n.t("bot_account").toLowerCase()}
)} @@ -283,8 +283,8 @@ export class CommentNode extends Component { )} {this.linkBtn(true)} - {cv.comment.language_id != 0 && ( - + {cv.comment.language_id !== 0 && ( + { this.props.allLanguages.find( lang => lang.id === cv.comment.language_id diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 916c8c93..137ded9e 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -327,13 +327,13 @@ export class PostListing extends Component { {this.creatorIsMod_ && ( - {i18n.t("mod")} + {i18n.t("mod")} )} {this.creatorIsAdmin_ && ( - {i18n.t("admin")} + {i18n.t("admin")} )} {post_view.creator.bot_account && ( - + {i18n.t("bot_account").toLowerCase()} )} @@ -344,8 +344,8 @@ export class PostListing extends Component { )} - {post_view.post.language_id != 0 && ( - + {post_view.post.language_id !== 0 && ( + { this.props.allLanguages.find( lang => lang.id === post_view.post.language_id