diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-02 10:59:58 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-02 10:59:58 -0400 |
| commit | 80a9bb161cda4a361d9626047869e7acbe845414 (patch) | |
| tree | 8e8990f99f84c5d05c5222d79bf3fbed43e3129a /src/client/views/collections/CollectionCarouselView.tsx | |
| parent | c6e4d53624f993d0bffda69f3633583ec47bd3e3 (diff) | |
fixed containerViewPath for carouse and comparison boxes
Diffstat (limited to 'src/client/views/collections/CollectionCarouselView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCarouselView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCarouselView.tsx b/src/client/views/collections/CollectionCarouselView.tsx index ba7c944a0..9f59322e8 100644 --- a/src/client/views/collections/CollectionCarouselView.tsx +++ b/src/client/views/collections/CollectionCarouselView.tsx @@ -210,7 +210,7 @@ export class CollectionCarouselView extends CollectionSubView() { return !(curDoc?.layout instanceof Doc) ? null : ( <> - <div className="collectionCarouselView-image" key="image"> + <div className="collectionCarouselView-image"> <DocumentView {...this._props} NativeWidth={returnZero} @@ -218,6 +218,7 @@ export class CollectionCarouselView extends CollectionSubView() { fitWidth={undefined} setContentViewBox={undefined} childFilters={this.childDocFilters} + containerViewPath={this._props.docViewPath} onDoubleClickScript={this.onContentDoubleClick} onClickScript={this.onContentClick} isDocumentActive={this._props.childDocumentsActive?.() ? this._props.isDocumentActive : this._props.isContentActive} |
