@tanstack/table-core 8.0.0-beta.6 → 8.0.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.0.0-beta.6",
4
+ "version": "8.0.0-beta.7",
5
5
  "description": "Headless UI for building powerful tables & datagrids for TS/JS.",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/table#readme",
@@ -258,7 +258,7 @@ export const Grouping: TableFeature = {
258
258
  getIsAggregated: () =>
259
259
  !cell.getIsGrouped() &&
260
260
  !cell.getIsPlaceholder() &&
261
- row.subRows?.length > 1,
261
+ !!row.subRows?.length,
262
262
  renderAggregatedCell: () => {
263
263
  if (process.env.NODE_ENV === 'development') {
264
264
  if (!column.columnDef.aggregatedCell) {