diff options
| author | bob <bcz@cs.brown.edu> | 2019-06-12 10:32:45 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-06-12 10:32:45 -0400 |
| commit | a638c12cde39a3ea5193a8038f72a55d706d9af8 (patch) | |
| tree | 1c1c753f33326d9ce11e98b158e416f7991987e5 /src/client/views/collections | |
| parent | b0390a9d3e9201a16e06cf46196688026f949d9f (diff) | |
a bunch of cleanup and fixes to formattedtextbox & mainoverlaytextbox
Diffstat (limited to 'src/client/views/collections')
| -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; } |
