Fix: フォロワー数を隠す設定にしているアカウントのフォロワー数が隠れない問題 (#780)
This commit is contained in:
parent
8e59cd0992
commit
5629bc6f72
1 changed files with 2 additions and 1 deletions
|
@ -140,7 +140,8 @@ const Account = ({ size = 46, account, onFollow, onBlock, onMute, onMuteNotifica
|
||||||
<DisplayName account={account} />
|
<DisplayName account={account} />
|
||||||
{!minimal && (
|
{!minimal && (
|
||||||
<div className='account__details'>
|
<div className='account__details'>
|
||||||
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter} /> {verification} {muteTimeRemaining}
|
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter}
|
||||||
|
isHide={account.getIn(['other_settings', 'hide_followers_count'])} /> {verification} {muteTimeRemaining}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue