diff options
Diffstat (limited to 'lib/items-tech/table/hull')
| -rw-r--r-- | lib/items-tech/table/hull/offshore-hull-table.tsx | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/lib/items-tech/table/hull/offshore-hull-table.tsx b/lib/items-tech/table/hull/offshore-hull-table.tsx index 00f2c466..2a6f3173 100644 --- a/lib/items-tech/table/hull/offshore-hull-table.tsx +++ b/lib/items-tech/table/hull/offshore-hull-table.tsx @@ -70,19 +70,16 @@ export function OffshoreHullTable({ promises }: OffshoreHullTableProps) { type: "text",
},
{
- id: "itemName",
- label: "Item Name",
- type: "text",
- },
- {
- id: "description",
- label: "Description",
- type: "text",
- },
- {
id: "workType",
label: "기능(공종)",
- type: "text",
+ type: "select",
+ options: [
+ { label: "HA", value: "HA" },
+ { label: "HE", value: "HE" },
+ { label: "HH", value: "HH" },
+ { label: "HM", value: "HM" },
+ { label: "NC", value: "NC" },
+ ],
},
{
id: "itemList",
|
