summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/vendors/table/vendors-table.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/vendors/table/vendors-table.tsx b/lib/vendors/table/vendors-table.tsx
index 02768f32..34b9b3e7 100644
--- a/lib/vendors/table/vendors-table.tsx
+++ b/lib/vendors/table/vendors-table.tsx
@@ -88,11 +88,6 @@ export function VendorsTable({ promises }: VendorsTableProps) {
{ id: "vendorCode", label: "업체코드", type: "text" },
{ id: "email", label: "이메일", type: "text" },
{ id: "country", label: "국가", type: "text" },
- { id: "vendorTypeName", label: "업체 유형", type: "text" },
- { id: "vendorCategory", label: "업체 분류", type: "select", options: [
- { label: "정규업체", value: "정규업체" },
- { label: "잠재업체", value: "잠재업체" },
- ]},
{
id: "status",
label: "업체승인상태",
@@ -104,6 +99,11 @@ export function VendorsTable({ promises }: VendorsTableProps) {
icon: getVendorStatusIcon(status),
})),
},
+ { id: "vendorTypeName", label: "업체 유형", type: "text" },
+ { id: "vendorCategory", label: "업체 분류", type: "select", options: [
+ { label: "정규업체", value: "정규업체" },
+ { label: "잠재업체", value: "잠재업체" },
+ ]},
{ id: "createdAt", label: "등록일", type: "date" },
{ id: "updatedAt", label: "수정일", type: "date" },
]