@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.
@@ -2978,7 +2978,7 @@ const createRow = (table, id, original, rowIndex, depth, subRows, parentId) => {
2978
2978
  },
2979
2979
  subRows: subRows != null ? subRows : [],
2980
2980
  getLeafRows: () => flattenBy(row.subRows, d => d.subRows),
2981
- getParentRow: () => row.parentId ? table.getRow(row.parentId) : undefined,
2981
+ getParentRow: () => row.parentId ? table.getRow(row.parentId, true) : undefined,
2982
2982
  getParentRows: () => {
2983
2983
  let parentRows = [];
2984
2984
  let currentRow = row;