From 28fd28f6d3c46b069c7aa5cea3f3cb88220fa27f Mon Sep 17 00:00:00 2001 From: Jay Sitter Date: Sun, 18 Jun 2023 10:47:29 -0400 Subject: [PATCH] feat: Badge-ify NSFW and removed by mod title info --- src/shared/components/post/post-listing.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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")} )} ); -- 2.44.1