From 5f7ddd6f8f089fcbc374c86089ff72cd3ebb4a27 Mon Sep 17 00:00:00 2001 From: SMU Date: Sat, 27 Jul 2024 20:17:56 +0200 Subject: [PATCH] docs: Clarify that getIsSomeRowsSelected return false if all rows are selected (#5337) Discussion about this problem here https://github.com/TanStack/table/discussions/4780 --- docs/api/features/row-selection.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api/features/row-selection.md b/docs/api/features/row-selection.md index bea187b5ee..312fde8573 100644 --- a/docs/api/features/row-selection.md +++ b/docs/api/features/row-selection.md @@ -113,6 +113,8 @@ getIsSomeRowsSelected: () => boolean Returns whether or not any rows in the table are selected. +NOTE: Returns `false` if all rows are selected. + ### `getIsSomePageRowsSelected` ```tsx