From 9ceed79cf32c896f8a998399bf1b296506b2cd4a Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 8 Apr 2025 03:08:19 +0000 Subject: 로그인 및 미들웨어 처리. 구조 변경 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tbe/table/tbe-table-columns.tsx | 4 ++-- lib/tbe/table/tbe-table.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/tbe') diff --git a/lib/tbe/table/tbe-table-columns.tsx b/lib/tbe/table/tbe-table-columns.tsx index f2bc2ced..3b62fe06 100644 --- a/lib/tbe/table/tbe-table-columns.tsx +++ b/lib/tbe/table/tbe-table-columns.tsx @@ -198,7 +198,7 @@ const filesColumn: ColumnDef = { ) }, enableSorting: false, - maxSize: 80, + minSize: 80, } // 댓글 칼럼 @@ -233,7 +233,7 @@ const commentsColumn: ColumnDef = { ) }, enableSorting: false, - maxSize: 80, + minSize: 80, } // ---------------------------------------------------------------- // 5) 최종 컬럼 배열 - Update to include the files column diff --git a/lib/tbe/table/tbe-table.tsx b/lib/tbe/table/tbe-table.tsx index ed323800..e67b1d3d 100644 --- a/lib/tbe/table/tbe-table.tsx +++ b/lib/tbe/table/tbe-table.tsx @@ -163,7 +163,7 @@ export function AllTbeTable({ promises }: VendorsTableProps) { sorting: [{ id: "rfqVendorUpdated", desc: true }], columnPinning: { right: ["actions"] }, }, - getRowId: (originalRow) => String(originalRow.id), + getRowId: (originalRow) => (`${originalRow.id}${originalRow.rfqId}`), shallow: false, clearOnDefault: true, }) -- cgit v1.2.3