diff options
| author | bobzel <zzzman@gmail.com> | 2022-04-04 18:35:10 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-04-04 18:35:10 -0400 |
| commit | ab7948689e384af8779e581708df6fa4225a85a3 (patch) | |
| tree | 8cfd66f92023912397977452adab8c00e041b3b4 /src/client/views/collections/CollectionSubView.tsx | |
| parent | 4a6603ec1ffe317a98029c0e14a0f5c3a6de7e58 (diff) | |
fixed autolink. fixed the pileup view to animate properly and activate without selection. added a 'dataTransition" prop to DocumentView to allow collections to animate changes in the size of documents.
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 42e157396..d8f1287cd 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -453,7 +453,7 @@ export function CollectionSubView<X>(moreProps?: X) { if (completed) completed(set); else { if (isFreeformView && generatedDocuments.length > 1) { - addDocument(DocUtils.pileup(generatedDocuments, options.x!, options.y!)); + addDocument(DocUtils.pileup(generatedDocuments, options.x!, options.y!)!); } else { generatedDocuments.forEach(addDocument); } |
