From 7a1524ba54f43d0f2a19e4bca2c6a2e0b01c5ef1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 17 Jun 2025 09:02:32 +0000 Subject: (대표님) 20250617 18시 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/data-table/data-table-pagination.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/data-table/data-table-pagination.tsx') diff --git a/components/data-table/data-table-pagination.tsx b/components/data-table/data-table-pagination.tsx index 4ed63a1b..db62f6e8 100644 --- a/components/data-table/data-table-pagination.tsx +++ b/components/data-table/data-table-pagination.tsx @@ -33,7 +33,7 @@ export function DataTablePagination({ // "All"을 1,000,000으로 처리할 것이므로, // 만약 현재 pageSize가 1,000,000이면 화면상 "All"로 표시 const selectValue = - currentPageSize === 1_000_000 + currentPageSize === 1_000 ? "All" : String(currentPageSize) @@ -53,7 +53,7 @@ export function DataTablePagination({ onValueChange={(value) => { if (value === "All") { // "All"을 1,000,000으로 치환 - table.setPageSize(1_000_000) + table.setPageSize(1_000) } else { table.setPageSize(Number(value)) } -- cgit v1.2.3