logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 7060bdf04bde59aab9addce95f00d6e1075a62ba
parent: e0a197650a30bec9dae26d714168700bc9ce93ed
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Sat, 29 Oct 2016 01:31:33 +0200

Hide notes on user lists for now

Diffstat:

Mapp/assets/javascripts/components/features/followers/index.jsx2+-
Mapp/assets/javascripts/components/features/following/index.jsx2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 ( <ScrollContainer scrollKey='followers'> <div style={{ overflowY: 'scroll', flex: '1 1 auto', overflowX: 'hidden' }} className='scrollable'> - {accountIds.map(id => <AccountContainer key={id} id={id} />)} + {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)} </div> </ScrollContainer> ); diff --git 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 ( <ScrollContainer scrollKey='following'> <div style={{ overflowY: 'scroll', flex: '1 1 auto', overflowX: 'hidden' }} className='scrollable'> - {accountIds.map(id => <AccountContainer key={id} id={id} />)} + {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)} </div> </ScrollContainer> );