summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/ship/Items-ship-table.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/table/ship/Items-ship-table.tsx')
-rw-r--r--lib/items-tech/table/ship/Items-ship-table.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/items-tech/table/ship/Items-ship-table.tsx b/lib/items-tech/table/ship/Items-ship-table.tsx
index aee90cfc..29ad8f8a 100644
--- a/lib/items-tech/table/ship/Items-ship-table.tsx
+++ b/lib/items-tech/table/ship/Items-ship-table.tsx
@@ -24,6 +24,7 @@ type ShipbuildingItem = {
shipTypes: string;
itemCode: string;
itemName: string;
+ itemList: string | null;
description: string | null;
createdAt: Date;
updatedAt: Date;
@@ -56,6 +57,10 @@ export function ItemsShipTable({ promises }: ItemsTableProps) {
id: "shipTypes",
label: "선종",
},
+ {
+ id: "itemList",
+ label: "아이템 리스트",
+ },
]
/**
@@ -95,6 +100,11 @@ export function ItemsShipTable({ promises }: ItemsTableProps) {
label: "선종",
type: "text",
},
+ {
+ id: "itemList",
+ label: "아이템 리스트",
+ type: "text",
+ },
]
const { table } = useDataTable({