diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-18 16:45:32 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-18 16:45:32 -0500 |
| commit | a2abfb07b783769094414c39e300b88c31cfc450 (patch) | |
| tree | 9a66211fe5249d5c7d08b59caa2d4e3e200a9325 /src/client/views/search | |
| parent | 0d59f6bc23c755c4eab2503add28699f5a5b1992 (diff) | |
added preliminary cookie mechanism for making documents appear after focusing on a document which sets a cookie. converted catalog to new "file system" tree view.
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index d10afdcf9..553443931 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -63,7 +63,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc @observable _deletedDocsStatus: boolean = false; @observable _onlyAliases: boolean = true; @observable _searchbarOpen = false; - @observable _searchFullDB = "DB"; + @observable _searchFullDB = "DB"; // "DB" means searh the entire database. "My Stuff" adds a flag that selects only documents that the current user has authored @observable _noResults = ""; @observable _pageStart = 0; @observable open = false; @@ -466,7 +466,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc } @computed get scopeButtons() { - return <div style={{ height: 25, paddingLeft: "4px", paddingRight: "4px"}}> + return <div style={{ height: 25, paddingLeft: "4px", paddingRight: "4px" }}> <form className="beta" style={{ justifyContent: "space-evenly", display: "flex" }}> <div style={{ display: "contents" }}> <div className="radio" style={{ margin: 0 }}> |
