diff options
| author | eleanor-park <eleanor_park@brown.edu> | 2024-11-03 16:32:28 -0500 |
|---|---|---|
| committer | eleanor-park <eleanor_park@brown.edu> | 2024-11-03 16:32:28 -0500 |
| commit | 8847d6cf5a0eaeeddaefc71d0202247b4d2d096b (patch) | |
| tree | c490c1e06057c68453f8262f83d0800c3918e084 /src/client/views/collections | |
| parent | 9e0b0ad736c9824d74ced46eb4b1cf96eacd55fd (diff) | |
working on smart draw width bugs
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 65b2702c6..4f62b6fbb 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1285,7 +1285,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection addDrawing = (doc: Doc, opts: DrawingOptions, gptRes: string) => { const docData = doc[DocData]; docData.title = opts.text.match(/^(.*?)~~~.*$/)?.[1] || opts.text; - docData.width = opts.size; + docData._width = opts.size; docData.drawingInput = opts.text; docData.drawingComplexity = opts.complexity; docData.drawingColored = opts.autoColor; |
