diff options
author | bobzel <zzzman@gmail.com> | 2023-08-16 13:31:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 13:31:56 -0400 |
commit | d1e31265f8707bea63e21bf9a7b1dd10ccbf2009 (patch) | |
tree | b9c8b7d2aa084c206d272828843fc2b2ce911089 /src/client/documents/Documents.ts | |
parent | ad74cd03fa38a66101331ac0d3ea6cda841e3eee (diff) | |
parent | 61fb855ec92540c48cc4cc844d3b21728e8a4754 (diff) |
Merge pull request #206 from brown-dash/data-visualization-sarah
Data visualization sarah
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 8a4a82e6d..5c33e319d 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1163,7 +1163,7 @@ export namespace Docs { } 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); + return InstanceFromProto(Prototypes.get(DocumentType.DATAVIZ), new CsvField(url), { title: 'Data Viz', type: 'dataviz', ...options }, undefined, undefined, undefined, overwriteDoc); } export function DockDocument(documents: Array<Doc>, config: string, options: DocumentOptions, id?: string) { |