]> Untitled Git - lemmy-ui.git/commitdiff
Merge branch 'main' into new-comment-space
authorSleeplessOne1917 <abias1122@gmail.com>
Sun, 25 Jun 2023 17:29:02 +0000 (17:29 +0000)
committerGitHub <noreply@github.com>
Sun, 25 Jun 2023 17:29:02 +0000 (17:29 +0000)
src/shared/components/post/post-listing.tsx

index 092e253e80bfe52f8b757b8077e6abfca08841fa..e43590e58c54197973f8768fe90af77cb1887632 100644 (file)
@@ -741,9 +741,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
         <Icon icon="message-square" classes="me-1" inline />
         {post_view.counts.comments}
         {this.unreadCount && (
-          <span className="text-muted fst-italic">
-            ({this.unreadCount} {I18NextService.i18n.t("new")})
-          </span>
+          <>
+            {" "}
+            <span className="text-muted fst-italic">
+              ({this.unreadCount} {I18NextService.i18n.t("new")})
+            </span>
+          </>
         )}
       </Link>
     );