diff options
Diffstat (limited to 'app/assets/javascripts/components/features')
3 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/components/features/home_timeline/index.jsx b/app/assets/javascripts/components/features/home_timeline/index.jsx index 9be3f3964..e4cd8bdca 100644 --- a/app/assets/javascripts/components/features/home_timeline/index.jsx +++ b/app/assets/javascripts/components/features/home_timeline/index.jsx @@ -19,7 +19,7 @@ const HomeTimeline = React.createClass({ render () { return ( <Column icon='home' heading='Home'> - <StatusListContainer type='home' /> + <StatusListContainer {...this.props} type='home' /> </Column> ); }, diff --git a/app/assets/javascripts/components/features/mentions_timeline/index.jsx b/app/assets/javascripts/components/features/mentions_timeline/index.jsx index a1b511d3e..919a75d18 100644 --- a/app/assets/javascripts/components/features/mentions_timeline/index.jsx +++ b/app/assets/javascripts/components/features/mentions_timeline/index.jsx @@ -19,7 +19,7 @@ const MentionsTimeline = React.createClass({ render () { return ( <Column icon='at' heading='Mentions'> - <StatusListContainer type='mentions' /> + <StatusListContainer {...this.props} type='mentions' /> </Column> ); }, diff --git a/app/assets/javascripts/components/features/ui/index.jsx b/app/assets/javascripts/components/features/ui/index.jsx index fab32a31e..06a9d2f50 100644 --- a/app/assets/javascripts/components/features/ui/index.jsx +++ b/app/assets/javascripts/components/features/ui/index.jsx @@ -28,8 +28,8 @@ const UI = React.createClass({ <MediaQuery minWidth={layoutBreakpoint}> <ColumnsArea> <Compose /> - <HomeTimeline /> - <MentionsTimeline /> + <HomeTimeline trackScroll={false} /> + <MentionsTimeline trackScroll={false} /> {this.props.children} </ColumnsArea> </MediaQuery> |