feat(UI): Hide avatars on listings

This commit is contained in:
Jay Sitter 2023-06-25 16:33:11 -04:00
parent 973bab1313
commit 528aed7f58
2 changed files with 10 additions and 2 deletions

View 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} />
<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 && (

View 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}