]> cat aescling's git repositories - mastodon.git/commitdiff
Hide notes on user lists for now
authorEugen Rochko <eugen@zeonfederated.com>
Fri, 28 Oct 2016 23:31:33 +0000 (01:31 +0200)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 28 Oct 2016 23:31:33 +0000 (01:31 +0200)
app/assets/javascripts/components/features/followers/index.jsx
app/assets/javascripts/components/features/following/index.jsx

index 0274ac2fcf8371643269ae75023017f05a6d9e5a..feb849b9be516e498ec8d8666b354a0d625e0d88 100644 (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>
     );
index 2ceca3d625ba4e43b597c2428bc79dd93f5c5d71..538e1aa331a53fde11d47081f29665d8745bb4cd 100644 (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>
     );