From bac0228d21b7195065e9cddcc327ae33659c7bcc Mon Sep 17 00:00:00 2001 From: dujinkim Date: Sun, 1 Jun 2025 13:52:21 +0000 Subject: (대표님) 20250601까지 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/data-table/data-table.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/data-table/data-table.tsx') diff --git a/components/data-table/data-table.tsx b/components/data-table/data-table.tsx index c241c1ec..7d376b65 100644 --- a/components/data-table/data-table.tsx +++ b/components/data-table/data-table.tsx @@ -5,7 +5,7 @@ import { flexRender, type Table as TanstackTable } from "@tanstack/react-table" import { ChevronRight, ChevronUp } from "lucide-react" import { cn } from "@/lib/utils" -import { getCommonPinningStyles } from "@/lib/data-table" +import { getCommonPinningStylesWithBorder } from "@/lib/data-table" import { Table, TableBody, @@ -75,7 +75,7 @@ export function DataTable({ data-column-id={header.column.id} className={compact ? "py-1 px-2 text-sm" : ""} style={{ - ...getCommonPinningStyles({ column: header.column }), + ...getCommonPinningStylesWithBorder({ column: header.column }), width: header.getSize(), }} > @@ -170,7 +170,7 @@ export function DataTable({ data-column-id={cell.column.id} className={compactStyles.cell} style={{ - ...getCommonPinningStyles({ column: cell.column }), + ...getCommonPinningStylesWithBorder({ column: cell.column }), width: cell.column.getSize(), }} > -- cgit v1.2.3