Skip to content

Commit

Permalink
fix: fixed crash when toggling selection of non-visible row (#5221)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Dec 20, 2023
1 parent 743c9b7 commit cd8c821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table-core/src/features/RowSelection.ts
Expand Up @@ -556,7 +556,7 @@ const mutateRowIsSelected = <TData extends RowData>(
includeChildren: boolean,
table: Table<TData>
) => {
const row = table.getRow(id)
const row = table.getRow(id, true)

// const isGrouped = row.getIsGrouped()

Expand Down

0 comments on commit cd8c821

Please sign in to comment.