diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-20 22:34:29 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-20 22:34:29 -0400 |
commit | a9b6fba3a742f95815e2664770079bebd3b87d5f (patch) | |
tree | 8befbba81a9dc88436d8129dbdf352b1dc70e831 /src/client/documents/Documents.ts | |
parent | 38a0f3f0b690599d72e52456ecfc14c081811e89 (diff) |
fixed search to avoid server crashes by stripping off initial ?*+ characters. made search parameters persistent on queryBox
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index e3cc8ccfe..5ff8f29ec 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -140,6 +140,7 @@ export interface DocumentOptions { icon?: string; sourcePanel?: Doc; // panel to display in 'targetContainer' as the result of a button onClick script targetContainer?: Doc; // document whose proto will be set to 'panel' as the result of a onClick click script + searchFileTypes?: List<string>; // file types allowed in a search query strokeWidth?: number; treeViewPreventOpen?: boolean; // ignores the treeViewOpen Doc flag which allows a treeViewItem's expand/collapse state to be independent of other views of the same document in the tree view treeViewHideTitle?: boolean; // whether to hide the title of a tree view |