remove trends
This commit is contained in:
parent
8474b50b51
commit
b9ad92b539
|
@ -8,7 +8,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
import Hashtag from '../../../components/hashtag';
|
import Hashtag from '../../../components/hashtag';
|
||||||
import Icon from 'gabsocial/components/icon';
|
import Icon from 'gabsocial/components/icon';
|
||||||
import WhoToFollowPanel from '../../ui/components/who_to_follow_panel';
|
import WhoToFollowPanel from '../../ui/components/who_to_follow_panel';
|
||||||
import TrendsPanel from '../../ui/components/trends_panel';
|
// import TrendsPanel from '../../ui/components/trends_panel';
|
||||||
|
|
||||||
export default @injectIntl
|
export default @injectIntl
|
||||||
class SearchResults extends ImmutablePureComponent {
|
class SearchResults extends ImmutablePureComponent {
|
||||||
|
@ -30,7 +30,7 @@ class SearchResults extends ImmutablePureComponent {
|
||||||
return (
|
return (
|
||||||
<div className='search-results'>
|
<div className='search-results'>
|
||||||
<WhoToFollowPanel />
|
<WhoToFollowPanel />
|
||||||
<TrendsPanel />
|
{/* <TrendsPanel /> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ import { openModal } from '../../actions/modal';
|
||||||
import { WrappedSwitch, WrappedRoute } from './util/react_router_helpers';
|
import { WrappedSwitch, WrappedRoute } from './util/react_router_helpers';
|
||||||
import UploadArea from './components/upload_area';
|
import UploadArea from './components/upload_area';
|
||||||
import TabsBar from './components/tabs_bar';
|
import TabsBar from './components/tabs_bar';
|
||||||
import TrendsPanel from './components/trends_panel';
|
// import TrendsPanel from './components/trends_panel';
|
||||||
import WhoToFollowPanel from './components/who_to_follow_panel';
|
import WhoToFollowPanel from './components/who_to_follow_panel';
|
||||||
import LinkFooter from './components/link_footer';
|
import LinkFooter from './components/link_footer';
|
||||||
import ProfileInfoPanel from './components/profile_info_panel';
|
import ProfileInfoPanel from './components/profile_info_panel';
|
||||||
|
@ -117,7 +117,7 @@ const LAYOUT = {
|
||||||
<LinkFooter />,
|
<LinkFooter />,
|
||||||
],
|
],
|
||||||
RIGHT: [
|
RIGHT: [
|
||||||
<TrendsPanel />,
|
// <TrendsPanel />,
|
||||||
<WhoToFollowPanel />,
|
<WhoToFollowPanel />,
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -127,7 +127,7 @@ const LAYOUT = {
|
||||||
<LinkFooter />,
|
<LinkFooter />,
|
||||||
],
|
],
|
||||||
RIGHT: [
|
RIGHT: [
|
||||||
<TrendsPanel />,
|
// <TrendsPanel />,
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
STATUS: {
|
STATUS: {
|
||||||
|
@ -135,7 +135,7 @@ const LAYOUT = {
|
||||||
LEFT: null,
|
LEFT: null,
|
||||||
RIGHT: [
|
RIGHT: [
|
||||||
<WhoToFollowPanel />,
|
<WhoToFollowPanel />,
|
||||||
<TrendsPanel />,
|
// <TrendsPanel />,
|
||||||
<LinkFooter />,
|
<LinkFooter />,
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,7 +8,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
import HeaderContainer from '../features/account_timeline/containers/header_container';
|
import HeaderContainer from '../features/account_timeline/containers/header_container';
|
||||||
import { NavLink } from 'react-router-dom';
|
import { NavLink } from 'react-router-dom';
|
||||||
import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
|
import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
|
||||||
import TrendsPanel from '../features/ui/components/trends_panel';
|
// import TrendsPanel from '../features/ui/components/trends_panel';
|
||||||
import LinkFooter from '../features/ui/components/link_footer';
|
import LinkFooter from '../features/ui/components/link_footer';
|
||||||
import SignUpPanel from '../features/ui/components/sign_up_panel';
|
import SignUpPanel from '../features/ui/components/sign_up_panel';
|
||||||
import ProfileInfoPanel from '../features/ui/components/profile_info_panel';
|
import ProfileInfoPanel from '../features/ui/components/profile_info_panel';
|
||||||
|
@ -75,7 +75,7 @@ class ProfilePage extends ImmutablePureComponent {
|
||||||
<div className='columns-area__panels__pane__inner'>
|
<div className='columns-area__panels__pane__inner'>
|
||||||
<SignUpPanel />
|
<SignUpPanel />
|
||||||
<WhoToFollowPanel />
|
<WhoToFollowPanel />
|
||||||
<TrendsPanel />
|
{/* <TrendsPanel /> */}
|
||||||
<LinkFooter />
|
<LinkFooter />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import Header from '../features/search/components/header';
|
import Header from '../features/search/components/header';
|
||||||
import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
|
import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
|
||||||
import TrendsPanel from '../features/ui/components/trends_panel';
|
// import TrendsPanel from '../features/ui/components/trends_panel';
|
||||||
import LinkFooter from '../features/ui/components/link_footer';
|
import LinkFooter from '../features/ui/components/link_footer';
|
||||||
import SignUpPanel from '../features/ui/components/sign_up_panel';
|
import SignUpPanel from '../features/ui/components/sign_up_panel';
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ const SearchPage = ({children}) => (
|
||||||
|
|
||||||
<div className='columns-area__panels__pane columns-area__panels__pane--left'>
|
<div className='columns-area__panels__pane columns-area__panels__pane--left'>
|
||||||
<div className='columns-area__panels__pane__inner'>
|
<div className='columns-area__panels__pane__inner'>
|
||||||
<TrendsPanel />
|
{/* <TrendsPanel /> */}
|
||||||
<LinkFooter />
|
<LinkFooter />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue