Fix: フォロワー数を隠す設定にしているアカウントのフォロワー数が隠れない問題 (#780)

This commit is contained in:
KMY(雪あすか) 2024-07-16 08:23:19 +09:00 committed by GitHub
parent 8e59cd0992
commit 5629bc6f72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>