diff options
author | eleanor-park <eleanor_park@brown.edu> | 2024-07-23 12:10:03 -0400 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2024-07-23 12:10:03 -0400 |
commit | 9e2f51dc5a1c82e9293e04c71f4430fd67ff3378 (patch) | |
tree | b9111a1e31a31223c556850330ec187f3c396d64 /src/client/documents/Documents.ts | |
parent | 3e1ef3d0b5445065ab3f44ffc17bbb04efaa8c8a (diff) | |
parent | a1960941edc43d71508ec5cb244f453eb06cf2e1 (diff) |
Merge remote-tracking branch 'origin/zach-starter' into eleanor-gptdraw
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 b96fdb4bd..ff95e38bd 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -767,7 +767,7 @@ export namespace Docs { export function ComparisonDocument(text: string, options: DocumentOptions = { title: 'Comparison Box' }) { return InstanceFromProto(Prototypes.get(DocumentType.COMPARISON), text, options); } - export function DiagramDocument(options: DocumentOptions = { title: 'bruh box' }) { + export function DiagramDocument(options: DocumentOptions = { title: '' }) { return InstanceFromProto(Prototypes.get(DocumentType.DIAGRAM), undefined, options); } |