Progress
This commit is contained in:
@@ -17,6 +17,7 @@ export default class BasicPage extends PureComponent {
|
||||
|
||||
return (
|
||||
<DefaultLayout
|
||||
noComposeButton
|
||||
showBackBtn
|
||||
title={title}
|
||||
layout={(
|
||||
|
||||
@@ -33,7 +33,7 @@ class GroupPage extends ImmutablePureComponent {
|
||||
static propTypes = {
|
||||
intl: PropTypes.object.isRequired,
|
||||
group: ImmutablePropTypes.map,
|
||||
chilren: PropTypes.node.isRequired,
|
||||
children: PropTypes.node.isRequired,
|
||||
relationships: ImmutablePropTypes.map,
|
||||
fetchGroup: PropTypes.func.isRequired,
|
||||
}
|
||||
|
||||
@@ -77,6 +77,10 @@ class HomePage extends PureComponent {
|
||||
icon: 'ellipsis',
|
||||
onClick: onOpenHomePageSettingsModal,
|
||||
},
|
||||
{
|
||||
icon: 'search',
|
||||
onClick: onOpenHomePageSettingsModal,
|
||||
},
|
||||
]}
|
||||
layout={(
|
||||
<Fragment>
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import { Fragment } from 'react'
|
||||
import { defineMessages, injectIntl } from 'react-intl'
|
||||
import { BREAKPOINT_EXTRA_SMALL } from '../constants'
|
||||
import Responsive from '../features/ui/util/responsive_component'
|
||||
import PageTitle from '../features/ui/util/page_title'
|
||||
import LinkFooter from '../components/link_footer'
|
||||
import SearchFilterPanel from '../components/panel/search_filter_panel'
|
||||
import Search from '../components/search'
|
||||
import Layout from '../layouts/layout'
|
||||
|
||||
const messages = defineMessages({
|
||||
@@ -59,6 +62,11 @@ class SearchPage extends PureComponent {
|
||||
)}
|
||||
>
|
||||
<PageTitle path={title} />
|
||||
|
||||
<Responsive max={BREAKPOINT_EXTRA_SMALL}>
|
||||
<Search />
|
||||
</Responsive>
|
||||
|
||||
{children}
|
||||
</Layout>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user