From: Dessalines Date: Thu, 17 Feb 2022 18:28:43 +0000 (-0500) Subject: Move fedi link in post listing location. Fixes #569 (#583) X-Git-Url: http://these/git/?a=commitdiff_plain;h=67593746e06343af4efc03ca94cbebe022656117;p=lemmy-ui.git Move fedi link in post listing location. Fixes #569 (#583) --- diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 9b07d1c..36bb912 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -445,11 +445,6 @@ export class PostListing extends Component { /> )} - {!post.local && ( - - - - )} {post.removed && ( {i18n.t("removed")} @@ -515,9 +510,19 @@ export class PostListing extends Component { } commentsLine(mobile = false) { + let post = this.props.post_view.post; return (
{this.commentsButton} + {!post.local && ( + + + + )} {mobile && !this.props.viewOnly && this.mobileVotes} {UserService.Instance.myUserInfo && !this.props.viewOnly &&