diff options
Diffstat (limited to 'app/views/directories')
-rw-r--r-- | app/views/directories/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/directories/index.html.haml b/app/views/directories/index.html.haml index 04639e32c..d5509f946 100644 --- a/app/views/directories/index.html.haml +++ b/app/views/directories/index.html.haml @@ -42,7 +42,7 @@ = friendly_number_to_human account.statuses_count %small= t('accounts.posts', count: account.statuses_count).downcase .accounts-table__count - = friendly_number_to_human account.followers_count + = hide_followers_count?(account) ? '-' : (friendly_number_to_human account.followers_count) %small= t('accounts.followers', count: account.followers_count).downcase .accounts-table__count - if account.last_status_at.present? |