diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-05 10:31:11 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-05 10:31:11 -0400 |
| commit | 217bb86beceed8f48ffe81cea0dbc578cb57a431 (patch) | |
| tree | de9f55024545c579fd5d66cd6285f5284810dd04 /src/client/views/collections/collectionGrid | |
| parent | 48932f578ac5926655c7d1f90fb659a0ead3b992 (diff) | |
fixed some warnings/errors. added tooltip for filter icon.
Diffstat (limited to 'src/client/views/collections/collectionGrid')
| -rw-r--r-- | src/client/views/collections/collectionGrid/CollectionGridView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionGrid/CollectionGridView.tsx b/src/client/views/collections/collectionGrid/CollectionGridView.tsx index 21f77e47b..e6ac7021a 100644 --- a/src/client/views/collections/collectionGrid/CollectionGridView.tsx +++ b/src/client/views/collections/collectionGrid/CollectionGridView.tsx @@ -240,7 +240,7 @@ export class CollectionGridView extends CollectionSubView(GridSchema) { w: Math.min(w, this.numCols), // reduces width if greater than numCols static: BoolCast(this.childLayoutPairs.find(({ layout }) => layout[Id] === i)?.layout.lockedPosition, false) // checks if the lock position item has been selected in the context menu })) : - this.savedLayoutList.map((layout, index) => Object.assign(layout, this.unflexedPosition(index))); + this.savedLayoutList.map((layout, index) => { Object.assign(layout, this.unflexedPosition(index)); return layout; }); } /** |
