From a69acc0a9fdb57cf1438785b4418cd33a040611a Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Sun, 21 Aug 2016 22:21:13 -0700 Subject: [PATCH] Fixed header title for search --- frontend/scenes/Search/Search.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/frontend/scenes/Search/Search.js b/frontend/scenes/Search/Search.js index e64cfe1c..f27b40c0 100644 --- a/frontend/scenes/Search/Search.js +++ b/frontend/scenes/Search/Search.js @@ -3,7 +3,7 @@ import { observer } from 'mobx-react'; import _ from 'lodash'; import { Flex } from 'reflexbox'; -import Layout from 'components/Layout'; +import Layout, { Title } from 'components/Layout'; import CenteredContent from 'components/CenteredContent'; import SearchField from './components/SearchField'; import DocumentPreview from 'components/DocumentPreview'; @@ -25,10 +25,15 @@ class Search extends React.Component { const search = _.debounce((searchTerm) => { this.store.search(searchTerm); }, 250); + const title = ( + + Search + + ); return (