From 94abadb3ee11447cb7dc9c66d6c9f80ec4da70f7 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Mon, 1 Apr 2019 11:02:57 +0200 Subject: [PATCH] Revert "Add indication that you have been blocked in web UI (#10420)" This reverts commit bd02ec6daa974dcd3231e73826a56e08dbeedadc. --- .../features/account/components/header.js | 10 ++++----- .../features/account_timeline/index.js | 22 +++++-------------- .../mastodon/features/followers/index.js | 8 +++---- .../mastodon/features/following/index.js | 8 +++---- .../styles/mastodon/stream_entries.scss | 6 ++--- 5 files changed, 20 insertions(+), 34 deletions(-) diff --git a/app/javascript/mastodon/features/account/components/header.js b/app/javascript/mastodon/features/account/components/header.js index f21ba8a9c502ab..76f50a5a43f261 100644 --- a/app/javascript/mastodon/features/account/components/header.js +++ b/app/javascript/mastodon/features/account/components/header.js @@ -94,15 +94,15 @@ class Header extends ImmutablePureComponent { let menu = []; if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) { - info.push(); + info.push(); } else if (me !== account.get('id') && account.getIn(['relationship', 'blocking'])) { - info.push(); + info.push(); } if (me !== account.get('id') && account.getIn(['relationship', 'muting'])) { - info.push(); + info.push(); } else if (me !== account.get('id') && account.getIn(['relationship', 'domain_blocking'])) { - info.push(); + info.push(); } if (me !== account.get('id')) { @@ -111,7 +111,7 @@ class Header extends ImmutablePureComponent { } else if (account.getIn(['relationship', 'requested'])) { actionBtn =