Skip to content

Commit 3f40d33

Browse files
Bug/935 🐛 handover first expanded column missing descriptions (#606)
* fix(power-bi): 🐛 Quick filter dropdowns now close when clicking outside the popover * feat(garden): 🐛 Fix expand function to work with index = 0
1 parent 9ae76f9 commit 3f40d33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/garden/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/workspace-garden",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"type": "module",
55
"sideEffects": false,
66
"license": "MIT",

packages/garden/src/lib/components/GardenItemContainer/GardenItemContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const GardenItemContainer = <TData extends Record<PropertyKey, unknown>,
8383

8484
const expand = useExpand();
8585

86-
const isColumnExpanded = !!expand.expandedColumns.find((s) => s === virtualColumn.index);
86+
const isColumnExpanded = expand.expandedColumns.includes(virtualColumn.index);
8787

8888
const {
8989
groupingService: { groupingKeys, timeInterval, dateVariant },

packages/workspace-fusion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/workspace-fusion",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"type": "module",
55
"sideEffects": false,
66
"license": "MIT",

0 commit comments

Comments
 (0)