From 2b85ebb562b00fe77a5bf6db7ca95702d9b7bbb0 Mon Sep 17 00:00:00 2001 From: Jennifer Echenim Date: Mon, 8 Jul 2024 12:14:04 +0400 Subject: [PATCH] Fix data table pagination row count --- .../modules/common/data-table/data-table-pagination.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tenscan/frontend/src/components/modules/common/data-table/data-table-pagination.tsx b/tools/tenscan/frontend/src/components/modules/common/data-table/data-table-pagination.tsx index 0bcd5c629a..d221bdf261 100644 --- a/tools/tenscan/frontend/src/components/modules/common/data-table/data-table-pagination.tsx +++ b/tools/tenscan/frontend/src/components/modules/common/data-table/data-table-pagination.tsx @@ -46,7 +46,7 @@ export function DataTablePagination({ return (
- Showing {table.getFilteredRowModel().rows.length} row(s) + Showing {table?.getFilteredRowModel()?.rows?.length} row(s)