Skip to content

Commit

Permalink
Bug/935 🐛 handover first expanded column missing descriptions (#606)
Browse files Browse the repository at this point in the history
* fix(power-bi): 🐛 Quick filter dropdowns now close when clicking outside the popover

* feat(garden): 🐛 Fix expand function to work with index = 0
  • Loading branch information
EdwardBrunton authored Apr 24, 2024
1 parent 9ae76f9 commit 3f40d33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/garden/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-garden",
"version": "7.0.1",
"version": "7.0.2",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const GardenItemContainer = <TData extends Record<PropertyKey, unknown>,

const expand = useExpand();

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

const {
groupingService: { groupingKeys, timeInterval, dateVariant },
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-fusion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-fusion",
"version": "8.0.1",
"version": "8.0.2",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit 3f40d33

Please sign in to comment.