@tanstack/react-table 8.10.4 → 8.10.5

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.
@@ -3012,7 +3012,7 @@
3012
3012
  },
3013
3013
  subRows: subRows != null ? subRows : [],
3014
3014
  getLeafRows: () => flattenBy(row.subRows, d => d.subRows),
3015
- getParentRow: () => row.parentId ? table.getRow(row.parentId) : undefined,
3015
+ getParentRow: () => row.parentId ? table.getRow(row.parentId, true) : undefined,
3016
3016
  getParentRows: () => {
3017
3017
  let parentRows = [];
3018
3018
  let currentRow = row;