From: Jay Sitter Date: Sun, 18 Jun 2023 14:47:29 +0000 (-0400) Subject: feat: Badge-ify NSFW and removed by mod title info X-Git-Url: http://these/git/?a=commitdiff_plain;h=28fd28f6d3c46b069c7aa5cea3f3cb88220fa27f;p=lemmy-ui.git feat: Badge-ify NSFW and removed by mod title info --- diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 56961e2..fa0aad9 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -552,7 +552,7 @@ export class PostListing extends Component { ))} {post.removed && ( - + {i18n.t("removed")} )} @@ -589,9 +589,7 @@ export class PostListing extends Component { )} {post.nsfw && ( - - {i18n.t("nsfw")} - + {i18n.t("nsfw")} )} );