diff options
| author | Eric <ericmabr@gmail.com> | 2023-03-01 17:47:51 -0500 |
|---|---|---|
| committer | Eric <ericmabr@gmail.com> | 2023-03-01 17:47:51 -0500 |
| commit | f7916a0161657e641717dca19f7c81af2d081ec4 (patch) | |
| tree | 6e2586bd6a07a2e29ee540ba9a008bb2c2968128 /src/client/views/collections/CollectionMenu.tsx | |
| parent | 9c5af8a72d28639a9a006746d853846db1a0d29f (diff) | |
Added basic search functionality:
:
Diffstat (limited to 'src/client/views/collections/CollectionMenu.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionMenu.tsx b/src/client/views/collections/CollectionMenu.tsx index 17f02711d..c83f4e689 100644 --- a/src/client/views/collections/CollectionMenu.tsx +++ b/src/client/views/collections/CollectionMenu.tsx @@ -746,7 +746,7 @@ export class CollectionFreeFormViewChrome extends React.Component<CollectionView const currentFrame = Cast(this.document._currentFrame, 'number', null); if (currentFrame === undefined) { this.document._currentFrame = 0; - CollectionFreeFormDocumentView.setupKeyframes(this.c hildDocs, 0); + CollectionFreeFormDocumentView.setupKeyframes(this.childDocs, 0); } this._keyTimer = CollectionFreeFormView.updateKeyframe(this._keyTimer, [...this.childDocs, this.document], currentFrame || 0); this.document._currentFrame = Math.max(0, (currentFrame || 0) + 1); |
