]> Untitled Git - lemmy-ui.git/commitdiff
Merge remote-tracking branch 'lemmy/main' into feat/hide-avatars-on-listings
authorJay Sitter <jay@jaysitter.com>
Sun, 25 Jun 2023 21:49:37 +0000 (17:49 -0400)
committerJay Sitter <jay@jaysitter.com>
Sun, 25 Jun 2023 21:49:37 +0000 (17:49 -0400)
* lemmy/main:
  feat(UI): Fix some link hover colors

src/shared/components/post/post-listing.tsx
src/shared/components/post/post-listings.tsx

index ac90b0d8fb13bdd04731eb7409fa9884331aa5b9..249f28ad3ecfd2b7df6dac3fef962f836ccbe72f 100644 (file)
@@ -106,6 +106,7 @@ interface PostListingProps {
   siteLanguages: number[];
   showCommunity?: boolean;
   showBody?: boolean;
+  hideAvatars?: boolean;
   hideImage?: boolean;
   enableDownvotes?: boolean;
   enableNsfw?: boolean;
@@ -397,7 +398,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
     const post_view = this.postView;
     return (
       <span className="small">
-        <PersonListing person={post_view.creator} muted={true} />
+        <PersonListing
+          person={post_view.creator}
+          hideAvatar={this.props.hideAvatars}
+        />
         {this.creatorIsMod_ && (
           <span className="mx-1 badge text-bg-light">
             {I18NextService.i18n.t("mod")}
@@ -417,7 +421,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
           <>
             {" "}
             {I18NextService.i18n.t("to")}{" "}
-            <CommunityLink community={post_view.community} />
+            <CommunityLink
+              community={post_view.community}
+              hideAvatar={this.props.hideAvatars}
+            />
           </>
         )}
         {post_view.post.language_id !== 0 && (
index 1fdaeba2ca40f1aa1f45bbdae292f3c3a908d5cc..29bbf588ed9b2d3d4d696dee57be0f9345c28b1f 100644 (file)
@@ -76,6 +76,7 @@ export class PostListings extends Component<PostListingsProps, any> {
                 showCommunity={this.props.showCommunity}
                 enableDownvotes={this.props.enableDownvotes}
                 enableNsfw={this.props.enableNsfw}
+                hideAvatars={true}
                 viewOnly={this.props.viewOnly}
                 allLanguages={this.props.allLanguages}
                 siteLanguages={this.props.siteLanguages}