diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-27 09:27:49 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-27 09:27:49 +0000 |
| commit | 49a42f8987f4479c6e317e0826211f37472295a6 (patch) | |
| tree | 7e276320a6408a8319b90560eaefd6d52e5bc93f /lib | |
| parent | 2b8241607f3234133b87b9e42d2b0d5f74767a7c (diff) | |
(임수민) 설계 RFQ 첨부 컬럼 버튼 수정
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/itb/table/purchase-request-columns.tsx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/itb/table/purchase-request-columns.tsx b/lib/itb/table/purchase-request-columns.tsx index e6489c18..e1d22eaa 100644 --- a/lib/itb/table/purchase-request-columns.tsx +++ b/lib/itb/table/purchase-request-columns.tsx @@ -203,15 +203,10 @@ export function getPurchaseRequestColumns({ cell: ({ row }) => { const count = Number(row.original.attachmentCount) || 0; return count > 0 ? ( - <Button - variant="ghost" - size="sm" - className="h-8 px-2" - onClick={() => setRowAction({ row, type: "attachments" })} - > + <div className="flex items-center h-8 px-2"> <FileText className="h-4 w-4 mr-1" /> {count} - </Button> + </div> ) : ( <span className="text-muted-foreground text-sm">-</span> ); |
