Skip to content

Commit 37911bb

Browse files
authored
fix(AnalyticalTable): fix nested manualGroupBy (#4862)
1 parent 81f4200 commit 37911bb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/main/src/components/AnalyticalTable/TableBody/VirtualTableBody.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,10 @@ export const VirtualTableBody = (props: VirtualTableBodyProps) => {
246246
contentToRender = 'Expandable';
247247
} else if (
248248
cell.isGrouped ||
249-
(manualGroupBy && cell.column.isGrouped && getSubRowsByString(subRowsKey, row.original) != null)
249+
(manualGroupBy &&
250+
cell.column.isGrouped &&
251+
getSubRowsByString(subRowsKey, row.original) != null &&
252+
cell.value !== undefined)
250253
) {
251254
contentToRender = 'Grouped';
252255
} else if (cell.isAggregated) {

0 commit comments

Comments
 (0)