diff options
author | bobzel <zzzman@gmail.com> | 2023-03-23 17:01:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 17:01:51 -0400 |
commit | 9569fc333ffc3496f3a91989da778449271f323c (patch) | |
tree | 23e1b83253a91dc08a3171e1654bf4739524d5c7 /src/client/documents/Documents.ts | |
parent | 44a6c5cabd35e8f7734d6f70128245ba5379d3c1 (diff) | |
parent | 2c27974f2bce7ef847aa6aaff042e4ddc9b4aa89 (diff) |
Merge pull request #162 from brown-dash/schema-mehek
new schema view
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index cb429d436..0b6d4380d 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1139,8 +1139,8 @@ export namespace Docs { return Prototypes.get(DocumentType.PRESELEMENT); } - export function DataVizDocument(url: string, options?: DocumentOptions, overwriteDoc?: Doc) { - return InstanceFromProto(Prototypes.get(DocumentType.DATAVIZ), new CsvField(url), { title: 'Data Viz', ...options }, undefined, undefined, undefined, overwriteDoc); + export function DataVizDocument(url: string, options?: DocumentOptions) { + return InstanceFromProto(Prototypes.get(DocumentType.DATAVIZ), new CsvField(url), { title: 'Data Viz', ...options }); } export function DockDocument(documents: Array<Doc>, config: string, options: DocumentOptions, id?: string) { |