diff options
author | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-29 13:49:55 -0700 |
---|---|---|
committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-29 13:49:55 -0700 |
commit | 9aab1f5e7dc7438dfa8a93afe03bd5746315c994 (patch) | |
tree | b7789f15f74554beb23b85ec4a200bcbfd7b0bd4 /src/client/documents/Documents.ts | |
parent | e4b7b54eecc307ec52f6105f92c3d87449458641 (diff) |
bugfixing
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index e5b3c8a97..d440ed287 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -539,7 +539,7 @@ export namespace Docs { } export function SearchDocument(options: DocumentOptions = {}) { - return InstanceFromProto(Prototypes.get(DocumentType.SEARCH), "", options); + return InstanceFromProto(Prototypes.get(DocumentType.SEARCH), new List<Doc>([]), options); } export function ColorDocument(options: DocumentOptions = {}) { |