From 25083e5405e1a63a616b8d17b56abbfa02f199a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20M?= Date: Mon, 6 Jan 2025 11:51:26 +0100 Subject: [PATCH] fix: Group by not visible for table (#9365) Group by option was not visible on table, this is fixing the issue. --- .../components/ObjectOptionsDropdownMenuContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx b/packages/twenty-front/src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx index a739c457b..f82627c46 100644 --- a/packages/twenty-front/src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx +++ b/packages/twenty-front/src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx @@ -115,7 +115,7 @@ export const ObjectOptionsDropdownMenuContent = () => { contextualText={`${visibleBoardFields.length} shown`} hasSubMenu /> - {viewType === ViewType.Kanban && currentView?.key !== 'INDEX' && ( + {currentView?.key !== 'INDEX' && ( isDefined(recordGroupFieldMetadata)