summaryrefslogtreecommitdiff
path: root/lib/bidding/list/biddings-table.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bidding/list/biddings-table.tsx')
-rw-r--r--lib/bidding/list/biddings-table.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/bidding/list/biddings-table.tsx b/lib/bidding/list/biddings-table.tsx
index 672b756b..3b60c69b 100644
--- a/lib/bidding/list/biddings-table.tsx
+++ b/lib/bidding/list/biddings-table.tsx
@@ -57,6 +57,13 @@ export function BiddingsTable({ promises }: BiddingsTableProps) {
setSelectedBidding(rowAction.row.original)
switch (rowAction.type) {
+ case "view":
+ // 상세 페이지로 이동
+ router.push(`/evcp/bid/${rowAction.row.original.id}`)
+ break
+ case "update":
+ // EditBiddingSheet는 아래에서 별도로 처리
+ break
case "specification_meeting":
setSpecMeetingDialogOpen(true)
break