diff options
| author | bob <bcz@cs.brown.edu> | 2019-06-13 11:58:41 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-06-13 11:58:41 -0400 |
| commit | 5c8e4ee0c87b140f01f0d287af04fe205a80a584 (patch) | |
| tree | dea35fe98ed404b762d8bbfcc7ba772225bda8f0 /src/client/views/collections/CollectionSubView.tsx | |
| parent | 95674ee7f68782d1ce85858120efea956825bcb9 (diff) | |
| parent | e81e116b89fad0f3fcfb76039b0b802073307478 (diff) | |
Merge branch 'master' into rich_text_linking
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 762955a08..93a1a8cda 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -170,7 +170,7 @@ export function CollectionSubView<T>(schemaCtor: (doc: Doc) => T) { this.props.addDocument && this.props.addDocument(Docs.WebDocument(href, options)); } } else if (text) { - this.props.addDocument && this.props.addDocument(Docs.TextDocument({ ...options, documentText: "@@@" + text }), false); + this.props.addDocument && this.props.addDocument(Docs.TextDocument({ ...options, width: 100, height: 25, documentText: "@@@" + text }), false); } return; } |
