diff options
Diffstat (limited to 'lib/items-tech/table')
| -rw-r--r-- | lib/items-tech/table/hull/offshore-hull-table.tsx | 19 | ||||
| -rw-r--r-- | lib/items-tech/table/ship/Items-ship-table.tsx | 29 | ||||
| -rw-r--r-- | lib/items-tech/table/top/offshore-top-table.tsx | 18 |
3 files changed, 32 insertions, 34 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",
diff --git a/lib/items-tech/table/ship/Items-ship-table.tsx b/lib/items-tech/table/ship/Items-ship-table.tsx index 29ad8f8a..61e8d8b4 100644 --- a/lib/items-tech/table/ship/Items-ship-table.tsx +++ b/lib/items-tech/table/ship/Items-ship-table.tsx @@ -81,24 +81,29 @@ export function ItemsShipTable({ promises }: ItemsTableProps) { type: "text",
},
{
- id: "itemName",
- label: "Item Name",
- type: "text",
- },
- {
- id: "description",
- label: "Description",
- type: "text",
- },
- {
id: "workType",
label: "기능(공종)",
- type: "text",
+ type: "select",
+ options: [
+ { label: "기장", value: "기장" },
+ { label: "전장", value: "전장" },
+ { label: "선실", value: "선실" },
+ { label: "배관", value: "배관" },
+ { label: "철의", value: "철의" },
+ ],
},
{
id: "shipTypes",
label: "선종",
- type: "text",
+ type: "select",
+ options: [
+ { label: "A-MAX", value: "A-MAX" },
+ { label: "S-MAX", value: "S-MAX" },
+ { label: "LNGC", value: "LNGC" },
+ { label: "VLCC", value: "VLCC" },
+ { label: "CONT", value: "CONT" },
+ { label: "OPTION", value: "OPTION" },
+ ],
},
{
id: "itemList",
diff --git a/lib/items-tech/table/top/offshore-top-table.tsx b/lib/items-tech/table/top/offshore-top-table.tsx index 689f1db3..c038de13 100644 --- a/lib/items-tech/table/top/offshore-top-table.tsx +++ b/lib/items-tech/table/top/offshore-top-table.tsx @@ -66,19 +66,15 @@ export function OffshoreTopTable({ promises }: OffshoreTopTableProps) { type: "text",
},
{
- id: "itemName",
- label: "Item Name",
- type: "text",
- },
- {
- id: "description",
- label: "Description",
- type: "text",
- },
- {
id: "workType",
label: "기능(공종)",
- type: "text",
+ type: "select",
+ options: [
+ { label: "TM", value: "TM" },
+ { label: "TS", value: "TS" },
+ { label: "TE", value: "TE" },
+ { label: "TP", value: "TP" },
+ ],
},
{
id: "itemList",
|
