From: Dessalines Date: Mon, 6 Sep 2021 15:03:18 +0000 (-0400) Subject: Don't show your own subscribed on other users profiles. (#405) X-Git-Url: http://these/git/ui/assets/static/%22%7B%7D/%22?a=commitdiff_plain;h=018c10c9193082237b5f8036e215a40325591acb;p=lemmy-ui.git Don't show your own subscribed on other users profiles. (#405) - Fixes #402 --- diff --git a/src/shared/components/person/profile.tsx b/src/shared/components/person/profile.tsx index 815f2fd..591b503 100644 --- a/src/shared/components/person/profile.tsx +++ b/src/shared/components/person/profile.tsx @@ -251,7 +251,7 @@ export class Profile extends Component { {!this.state.loading && (
{this.moderates()} - {UserService.Instance.myUserInfo && this.follows()} + {this.isCurrentUser && this.follows()}
)}