Browse Source

Hide notes on user lists for now

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
7060bdf04b
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/assets/javascripts/components/features/followers/index.jsx
  2. +1
    -1
      app/assets/javascripts/components/features/following/index.jsx

+ 1
- 1
app/assets/javascripts/components/features/followers/index.jsx View File

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

+ 1
- 1
app/assets/javascripts/components/features/following/index.jsx View File

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