Skip to content

Commit

Permalink
fix: getIsSomeRowsSelected on all selection
Browse files Browse the repository at this point in the history
  • Loading branch information
iamswain25 committed May 3, 2024
1 parent e80b802 commit 1d9e4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table-core/src/features/RowSelection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ export const RowSelection: TableFeature = {
).length
return (
totalSelected > 0 &&
totalSelected < table.getFilteredRowModel().flatRows.length
totalSelected <= table.getFilteredRowModel().flatRows.length
)
}

Expand Down

0 comments on commit 1d9e4e7

Please sign in to comment.