Skip to content

Commit

Permalink
Fix: フォロワー数を隠す設定にしているアカウントのフォロワー数が隠れない問題 (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode authored Jul 15, 2024
1 parent 8e59cd0 commit 5629bc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/javascript/mastodon/components/account.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ const Account = ({ size = 46, account, onFollow, onBlock, onMute, onMuteNotifica
<DisplayName account={account} />
{!minimal && (
<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>
Expand Down

0 comments on commit 5629bc6

Please sign in to comment.