Skip to content

Commit

Permalink
fix: exclude columns with commas (#6102)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Feb 1, 2024
1 parent 4e3ab71 commit 28fc36a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,9 @@ export const ProjectFeatureToggles = ({
};
setTableState({
columns: Object.keys(newColumnVisibility).filter(
(columnId) => newColumnVisibility[columnId],
(columnId) =>
newColumnVisibility[columnId] &&
!columnId.includes(','),
),
});
},
Expand Down

0 comments on commit 28fc36a

Please sign in to comment.