We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
manualGroupBy
1 parent 81f4200 commit 37911bbCopy full SHA for 37911bb
packages/main/src/components/AnalyticalTable/TableBody/VirtualTableBody.tsx
@@ -246,7 +246,10 @@ export const VirtualTableBody = (props: VirtualTableBodyProps) => {
246
contentToRender = 'Expandable';
247
} else if (
248
cell.isGrouped ||
249
- (manualGroupBy && cell.column.isGrouped && getSubRowsByString(subRowsKey, row.original) != null)
+ (manualGroupBy &&
250
+ cell.column.isGrouped &&
251
+ getSubRowsByString(subRowsKey, row.original) != null &&
252
+ cell.value !== undefined)
253
) {
254
contentToRender = 'Grouped';
255
} else if (cell.isAggregated) {
0 commit comments