diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-03 16:45:22 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-03 16:45:22 -0400 |
commit | 9d06cd45c732006ed5ee13734fa8145886e349c0 (patch) | |
tree | 232827026825a7a1a19cedae5856cae7e4ba0046 /src/client/documents/Documents.ts | |
parent | bde3849478db64548aa992108c655fdd5f1cf940 (diff) |
fixed some issues with template buttons creating documents. simplified query boxe code. added a searchView.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index da8efe745..89e8d7ebc 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -164,8 +164,8 @@ export interface DocumentOptions { selectedIndex?: number; syntaxColor?: string; // can be applied to text for syntax highlighting all matches in the text searchText?: string, //for searchbox - sq?: string, - fq?: string, + searchQuery?: string, // for queryBox + filterQuery?: string, linearViewIsExpanded?: boolean; // is linear view expanded } @@ -548,7 +548,6 @@ export namespace Docs { } export function QueryDocument(options: DocumentOptions = {}) { - console.log("yuh"); return InstanceFromProto(Prototypes.get(DocumentType.QUERY), "", options); } |