@tanstack/react-table 8.5.26 → 8.5.27

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.
@@ -3152,11 +3152,11 @@ function getSortedRowModel() {
3152
3152
 
3153
3153
  // If there are sub-rows, sort them
3154
3154
  sortedData.forEach(row => {
3155
+ var _row$subRows;
3155
3156
  sortedFlatRows.push(row);
3156
- if (!row.subRows || row.subRows.length <= 1) {
3157
- return;
3157
+ if ((_row$subRows = row.subRows) != null && _row$subRows.length) {
3158
+ row.subRows = sortData(row.subRows);
3158
3159
  }
3159
- row.subRows = sortData(row.subRows);
3160
3160
  });
3161
3161
  return sortedData;
3162
3162
  };