From 4d9579139159f0768a58000b90be153a180aa67f Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 29 Aug 2025 16:47:33 +0200 Subject: [PATCH] total rows --- .../src/components/custom_ui/dataTable-pagination.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/apps/infoalloggi/src/components/custom_ui/dataTable-pagination.tsx b/apps/infoalloggi/src/components/custom_ui/dataTable-pagination.tsx index 10632d7..ad3c22a 100644 --- a/apps/infoalloggi/src/components/custom_ui/dataTable-pagination.tsx +++ b/apps/infoalloggi/src/components/custom_ui/dataTable-pagination.tsx @@ -26,13 +26,11 @@ export function DataTablePagination({ return (
- {hasSelectRow && ( - <> - {table.getFilteredSelectedRowModel().rows.length} di{" "} - {table.getFilteredRowModel().rows.length} righe selezionate. - - )} + {hasSelectRow && + `${table.getFilteredSelectedRowModel().rows.length} selezioni su `} + {table.getFilteredRowModel().rows.length} righe totali
+

Righe per pagina