forked from treehouse/mastodon
Hide notes on user lists for now
parent
e0a197650a
commit
7060bdf04b
|
@ -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…
Reference in New Issue