diff options
Diffstat (limited to 'lib/tbe')
| -rw-r--r-- | lib/tbe/table/tbe-table-columns.tsx | 4 | ||||
| -rw-r--r-- | lib/tbe/table/tbe-table.tsx | 2 |
2 files changed, 3 insertions, 3 deletions
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<VendorWithTbeFields> = { ) }, enableSorting: false, - maxSize: 80, + minSize: 80, } // 댓글 칼럼 @@ -233,7 +233,7 @@ const commentsColumn: ColumnDef<VendorWithTbeFields> = { ) }, 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, }) |
