From: Eugen Rochko Date: Fri, 28 Oct 2016 23:31:33 +0000 (+0200) Subject: Hide notes on user lists for now X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=7060bdf04bde59aab9addce95f00d6e1075a62ba;p=mastodon.git Hide notes on user lists for now --- diff --git a/app/assets/javascripts/components/features/followers/index.jsx b/app/assets/javascripts/components/features/followers/index.jsx index 0274ac2fc..feb849b9b 100644 --- a/app/assets/javascripts/components/features/followers/index.jsx +++ b/app/assets/javascripts/components/features/followers/index.jsx @@ -40,7 +40,7 @@ const Followers = React.createClass({ return (
- {accountIds.map(id => )} + {accountIds.map(id => )}
); diff --git a/app/assets/javascripts/components/features/following/index.jsx b/app/assets/javascripts/components/features/following/index.jsx index 2ceca3d62..538e1aa33 100644 --- a/app/assets/javascripts/components/features/following/index.jsx +++ b/app/assets/javascripts/components/features/following/index.jsx @@ -40,7 +40,7 @@ const Following = React.createClass({ return (
- {accountIds.map(id => )} + {accountIds.map(id => )}
);