diff options
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index e8fa8b01e..f06e0b551 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -606,7 +606,7 @@ export class CollectionStackingView extends CollectionSubView<Partial<collection } const rows = () => (!this.isStackingView ? 1 : Math.max(1, Math.min(docList.length, Math.floor((this._props.PanelWidth() - 2 * this.xMargin) / (this.columnWidth + this.gridGap))))); return ( - <> + <div key={(heading?.heading ?? '') + 'head'}> {this._props.isContentActive() && !this.isStackingView ? this.columnDragger : null} <div style={{ top: this.yMargin }}> <CollectionMasonryViewFieldRow @@ -628,7 +628,7 @@ export class CollectionStackingView extends CollectionSubView<Partial<collection setDocHeight={this.setDocHeight} /> </div> - </> + </div> ); }; |
