mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-13 19:55:08 +01:00
Hide followers count when hidden by instance or user
This commit is contained in:
parent
09062d393f
commit
21df2a68ac
1 changed files with 3 additions and 1 deletions
|
@ -160,7 +160,9 @@ class Account extends ImmutablePureComponent {
|
|||
<DisplayName account={account} inline />
|
||||
{!minimal && (
|
||||
<div className='account__details'>
|
||||
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter} /> {verification} {muteTimeRemaining}
|
||||
{account.get('followers_count') !== -1 && (
|
||||
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter} />
|
||||
)} {verification} {muteTimeRemaining}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue