diff options
| author | bob <bcz@cs.brown.edu> | 2019-11-13 11:44:52 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-11-13 11:44:52 -0500 |
| commit | e1930a62304db60d9eca542148995c5d03b79aea (patch) | |
| tree | 0efd8b0083cd80e3f9f265fb39a3283807183367 /src/client/views/search | |
| parent | 76411ba009c4265751431d255ab3cc9a3cfab69f (diff) | |
fixed search on client/server to work with richTextFields. got rid of 'text' field on richtextfield extensions.
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/FilterBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/FilterBox.tsx b/src/client/views/search/FilterBox.tsx index b841190d4..6e7e4ee1b 100644 --- a/src/client/views/search/FilterBox.tsx +++ b/src/client/views/search/FilterBox.tsx @@ -33,7 +33,7 @@ export enum Keys { export class FilterBox extends React.Component { static Instance: FilterBox; - public _allIcons: string[] = [DocumentType.AUDIO, DocumentType.COL, DocumentType.IMG, DocumentType.LINK, DocumentType.PDF, DocumentType.TEXT, DocumentType.VID, DocumentType.WEB]; + public _allIcons: string[] = [DocumentType.AUDIO, DocumentType.COL, DocumentType.IMG, DocumentType.LINK, DocumentType.PDF, DocumentType.TEXT, DocumentType.VID, DocumentType.WEB, DocumentType.TEMPLATE]; //if true, any keywords can be used. if false, all keywords are required. //this also serves as an indicator if the word status filter is applied |
