mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Don't show your own subscribed on other users profiles. (#405)
- Fixes #402
This commit is contained in:
parent
4137d47648
commit
018c10c919
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ export class Profile extends Component<any, ProfileState> {
|
|||
{!this.state.loading && (
|
||||
<div class="col-12 col-md-4">
|
||||
{this.moderates()}
|
||||
{UserService.Instance.myUserInfo && this.follows()}
|
||||
{this.isCurrentUser && this.follows()}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue