summaryrefslogtreecommitdiff
path: root/lib/items-ship/table/Items-ship-table.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-05-09 01:39:02 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-05-09 01:39:02 +0000
commit0704d236bbcc1339c9d93ee8fc678c6a0e425841 (patch)
tree1c06392e28576efdac8c386bc5f6ac1de936b745 /lib/items-ship/table/Items-ship-table.tsx
parent629c5ab0292a5953812cece93389735581493cc9 (diff)
0509 기술영업 조선 아이템 매트릭스 수정(type수정)
Diffstat (limited to 'lib/items-ship/table/Items-ship-table.tsx')
-rw-r--r--lib/items-ship/table/Items-ship-table.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/items-ship/table/Items-ship-table.tsx b/lib/items-ship/table/Items-ship-table.tsx
index 486c1481..6fec9ac0 100644
--- a/lib/items-ship/table/Items-ship-table.tsx
+++ b/lib/items-ship/table/Items-ship-table.tsx
@@ -14,6 +14,7 @@ import { getShipbuildingItems } from "../service"
import { getShipbuildingColumns } from "./items-ship-table-columns"
import { ItemsTableToolbarActions } from "./items-table-toolbar-actions"
import { DeleteItemsDialog } from "./delete-items-dialog"
+import { UpdateItemSheet } from "./update-items-sheet"
// 서비스에서 반환하는 데이터 타입 정의
type ShipbuildingItem = {
@@ -21,7 +22,7 @@ type ShipbuildingItem = {
itemId: number;
workType: "기장" | "전장" | "선실" | "배관" | "철의";
shipTypes: string;
- itemCode: string | null;
+ itemCode: string;
itemName: string;
description: string | null;
createdAt: Date;