@tanstack/svelte-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.
@@ -2992,7 +2992,7 @@
2992
2992
  },
2993
2993
  subRows: subRows != null ? subRows : [],
2994
2994
  getLeafRows: () => flattenBy(row.subRows, d => d.subRows),
2995
- getParentRow: () => row.parentId ? table.getRow(row.parentId) : undefined,
2995
+ getParentRow: () => row.parentId ? table.getRow(row.parentId, true) : undefined,
2996
2996
  getParentRows: () => {
2997
2997
  let parentRows = [];
2998
2998
  let currentRow = row;