about summary refs log tree commit diff
path: root/app/assets
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-29 01:31:33 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-29 01:31:33 +0200
commit7060bdf04bde59aab9addce95f00d6e1075a62ba (patch)
treeb3a37e9b103e1e9da1e3798a62195d78d7ce7029 /app/assets
parente0a197650a30bec9dae26d714168700bc9ce93ed (diff)
Hide notes on user lists for now
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/components/features/followers/index.jsx2
-rw-r--r--app/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
index 0274ac2fc..feb849b9b 100644
--- 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
index 2ceca3d62..538e1aa33 100644
--- 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>
     );