Skip to content

Commit

Permalink
feat: Make sidebar filter non-expandable
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBohme committed Sep 26, 2023
1 parent 4f9e202 commit ac9946b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Components/TagComparisonTable/TagComparisonTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,26 @@ function TagComparisonTable({ tags }: Props) {
suppressColumnSelectAll: true,
suppressColumnExpandAll: true,
},
minWidth: 250,
maxWidth: 250,
},
{
id: "filters",
labelDefault: "Row Data",
labelKey: "filters",
iconKey: "filter",
toolPanel: "agFiltersToolPanel",
minWidth: 250,
maxWidth: 250,
},
{
id: "commentFilters",
labelDefault: "Comments",
labelKey: "commentFilters",
iconKey: "filter",
toolPanel: CommentFilterToolPanel,
width: 250,
minWidth: 250,
maxWidth: 250,

},
{
Expand All @@ -103,7 +108,8 @@ function TagComparisonTable({ tags }: Props) {
labelKey: "iconFilters",
iconKey: "filter",
toolPanel: IconFilterToolPanel,
width: 250,
minWidth: 250,
maxWidth: 250,
},
],
defaultToolPanel: "columns",
Expand Down

0 comments on commit ac9946b

Please sign in to comment.