From 88f13ab89d2250e52c3375b077328a933a5762ec Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Thu, 30 Oct 2025 09:50:19 +0900 Subject: (김준회) SWP 로우 클릭하면 detail dialog 오픈하도록 변경 (버튼 --> 로우 전체) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/swp/table/swp-table.tsx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'lib/swp/table/swp-table.tsx') diff --git a/lib/swp/table/swp-table.tsx b/lib/swp/table/swp-table.tsx index 7918c07e..21a1c775 100644 --- a/lib/swp/table/swp-table.tsx +++ b/lib/swp/table/swp-table.tsx @@ -14,8 +14,6 @@ import { TableHeader, TableRow, } from "@/components/ui/table"; -import { Button } from "@/components/ui/button"; -import { ChevronRight } from "lucide-react"; import { swpDocumentColumns } from "./swp-table-columns"; import { SwpDocumentDetailDialog } from "./swp-document-detail-dialog"; import type { DocumentListItem } from "@/lib/swp/document-service"; @@ -80,17 +78,7 @@ export function SwpTable({ > {row.getVisibleCells().map((cell) => ( - {cell.column.id === "expander" ? ( - - ) : ( - flexRender(cell.column.columnDef.cell, cell.getContext()) - )} + {flexRender(cell.column.columnDef.cell, cell.getContext())} ))} -- cgit v1.2.3