diff options
author | bobzel <zzzman@gmail.com> | 2023-10-27 13:39:04 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-10-27 13:39:04 -0400 |
commit | a866baea5fdbf30650cbfbf4aa383019ef61ec3d (patch) | |
tree | 3c0ddb94bed25ba7fb512c2eb85109b66b1eacac /src/client/views/nodes/DocumentView.tsx | |
parent | b2233984df663be6554c935fe9e40f4778237e67 (diff) |
added collection itself to timeline
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 4a43ffe3e..43be4b724 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1312,7 +1312,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps pointerEvents: this.pointerEvents === 'visiblePainted' ? 'none' : this.pointerEvents, }}> <> - {DocumentViewInternal.AnimationEffect(renderDoc, this.rootDoc[Animation], this.rootDoc)} + {this._componentView instanceof KeyValueBox ? renderDoc : DocumentViewInternal.AnimationEffect(renderDoc, this.rootDoc[Animation], this.rootDoc)} {borderPath?.jsx} </> </div> |