From 51a70b67f4c33218bfcb3b3fa64eaea396bfc026 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Tue, 15 Nov 2022 21:35:13 +0100 Subject: [PATCH] Hide follower/followings tabs if social graph is hidden --- app/views/tabs/_profile.html.haml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/tabs/_profile.html.haml b/app/views/tabs/_profile.html.haml index ee490edd..06ceceac 100644 --- a/app/views/tabs/_profile.html.haml +++ b/app/views/tabs/_profile.html.haml @@ -2,5 +2,6 @@ .list-group.list-group-horizontal-sm.text-center = list_group_item t(".answers"), user_path(user), badge: user.answered_count = list_group_item t(".questions"), show_user_questions_path(user.screen_name), badge: user.asked_count - = list_group_item t(".followers"), show_user_followers_path(user.screen_name), badge: user.followers.count - = list_group_item t(".following"), show_user_followings_path(user.screen_name), badge: user.followings.count + - if user == current_user || !user.privacy_hide_social_graph + = list_group_item t(".followers"), show_user_followers_path(user.screen_name), badge: user.followers.count + = list_group_item t(".following"), show_user_followings_path(user.screen_name), badge: user.followings.count