diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-15 23:20:42 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-15 23:20:42 -0400 |
commit | 5848f027eb2ab914fafe15d25cdf02767dabd4aa (patch) | |
tree | a46a9c310e908650b134f8b0139aacee41a3546e /src/client/views/MainView.tsx | |
parent | eb2d8bdcf11459ab274196b390815e6fc4ddc26e (diff) | |
parent | e0986156ac3fa92d57f3fbe9bc5e36e413764357 (diff) |
Merge branch 'master' into web_chrome
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 7b4f1fc52..6e240817c 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -38,6 +38,7 @@ import { PreviewCursor } from './PreviewCursor'; import { FilterBox } from './search/FilterBox'; import { CollectionTreeView } from './collections/CollectionTreeView'; import { ClientUtils } from '../util/ClientUtils'; +import { SearchBox } from './search/SearchBox'; import { SchemaHeaderField, RandomPastel } from '../../new_fields/SchemaHeaderField'; import { DictationManager } from '../util/DictationManager'; import * as $ from 'jquery'; @@ -542,7 +543,7 @@ export class MainView extends React.Component { } @observable isSearchVisible = false; - @action + @action.bound toggleSearch = () => { // console.log("search toggling") this.isSearchVisible = !this.isSearchVisible; |