Hide notes on user lists for now

th-downstream
Eugen Rochko 8 years ago
parent 38cacac4b0
commit 1c157c040a

@ -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>
);

@ -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>
);

Loading…
Cancel
Save