Skip to content

Commit

Permalink
fix: Group by not visible for table (#9365)
Browse files Browse the repository at this point in the history
Group by option was not visible on table, this is fixing the issue.
  • Loading branch information
magrinj authored Jan 6, 2025
1 parent bf00c97 commit 25083e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const ObjectOptionsDropdownMenuContent = () => {
contextualText={`${visibleBoardFields.length} shown`}
hasSubMenu
/>
{viewType === ViewType.Kanban && currentView?.key !== 'INDEX' && (
{currentView?.key !== 'INDEX' && (
<MenuItem
onClick={() =>
isDefined(recordGroupFieldMetadata)
Expand Down

0 comments on commit 25083e5

Please sign in to comment.