@tanstack/table-core 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.
@@ -2982,7 +2982,7 @@
2982
2982
  },
2983
2983
  subRows: subRows != null ? subRows : [],
2984
2984
  getLeafRows: () => flattenBy(row.subRows, d => d.subRows),
2985
- getParentRow: () => row.parentId ? table.getRow(row.parentId) : undefined,
2985
+ getParentRow: () => row.parentId ? table.getRow(row.parentId, true) : undefined,
2986
2986
  getParentRows: () => {
2987
2987
  let parentRows = [];
2988
2988
  let currentRow = row;