diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-08 20:08:42 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-08 20:08:42 -0400 |
| commit | 24e31df47a0d38de8073da69cc4ea78a2e5be6cd (patch) | |
| tree | e2a55a0f08b43b77a75489cc698f57795d6e6257 /src/client/views/search | |
| parent | c63d7ab902135165eaafc89bcea15805ff10f11b (diff) | |
added hack to save startup state. fixed runtime failure by restoring imports in main.tsx
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index 1104d8d2a..019c703e0 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -24,6 +24,7 @@ import { ViewBoxBaseComponent } from "../DocComponent"; import { FieldView, FieldViewProps } from '../nodes/FieldView'; import "./SearchBox.scss"; import { undoBatch } from "../../util/UndoManager"; +import { DocServer } from "../../DocServer"; export const searchSchema = createSchema({ Document: Doc }); @@ -503,7 +504,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc Logoff </div> </div> - <div className="searchBox-lozenge"> + <div className="searchBox-lozenge" onClick={() => DocServer.PRINT_CACHE()}> {`UI project`} </div> <div className="searchBox-lozenge-dashboard" > |
