summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-04-29 03:09:38 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-04-29 03:09:38 +0000
commitd45127c71a1b041828e82e7c1c05bdf871b4c1bb (patch)
treed3a42dece80231c265068c6bdcabeeb4853ee2ef
parenta20fbfc2d1b22f2dd37d1f714fa7408065aef6f1 (diff)
[no 18] form-list 컬럼명 수정
-rw-r--r--config/formListsColumnsConfig.ts16
-rw-r--r--lib/form-list/table/formLists-table.tsx8
-rw-r--r--lib/form-list/table/meta-sheet.tsx8
3 files changed, 16 insertions, 16 deletions
diff --git a/config/formListsColumnsConfig.ts b/config/formListsColumnsConfig.ts
index 795db72f..cd8ad5cc 100644
--- a/config/formListsColumnsConfig.ts
+++ b/config/formListsColumnsConfig.ts
@@ -24,26 +24,26 @@ export const formListsColumnsConfig: FormListsColumnConfig[] = [
},
{
id: "formCode",
- label: "Form Code",
- excelHeader: "Form Code",
+ label: "Register ID",
+ excelHeader: "Register ID",
// group: "Basic Info",
},
{
id: "formName",
- label: "Form Name",
- excelHeader: "Form Name",
+ label: "Register Description",
+ excelHeader: "Register Description",
// group: "Basic Info",
},
{
id: "tagTypeLabel",
- label: "Tag Type",
- excelHeader: "Tag Type",
+ label: "TAG TYPE ID",
+ excelHeader: "TAG TYPE ID",
// group: "Basic Info",
},
{
id: "classLabel",
- label: "Class",
- excelHeader: "Class",
+ label: "Class Description",
+ excelHeader: "Class Description",
// group: "Basic Info",
},
{
diff --git a/lib/form-list/table/formLists-table.tsx b/lib/form-list/table/formLists-table.tsx
index aa5bfa09..9f35db03 100644
--- a/lib/form-list/table/formLists-table.tsx
+++ b/lib/form-list/table/formLists-table.tsx
@@ -79,23 +79,23 @@ export function FormListsTable({ promises }: ItemsTableProps) {
},
{
id: "formCode",
- label: "Form Code",
+ label: "Register ID",
type: "text",
},
{
id: "formName",
- label: "Form Name",
+ label: "Register Description",
type: "text",
},
{
id: "tagTypeLabel",
- label: "Tag Type",
+ label: "TAG TYPE ID",
type: "text",
},
{
id: "classLabel",
- label: "Class",
+ label: "Class Description",
type: "text",
},
diff --git a/lib/form-list/table/meta-sheet.tsx b/lib/form-list/table/meta-sheet.tsx
index 9266329f..03e7d257 100644
--- a/lib/form-list/table/meta-sheet.tsx
+++ b/lib/form-list/table/meta-sheet.tsx
@@ -152,7 +152,7 @@ export function ViewMetas({ open, onOpenChange, form }: ViewMetasProps) {
<SheetContent className="sm:max-w-xl md:max-w-3xl lg:max-w-4xl xl:max-w-5xl overflow-y-auto">
<SheetHeader className="mb-4">
- <SheetTitle>Form Metadata</SheetTitle>
+ <SheetTitle>Register Metadata</SheetTitle>
<SheetDescription>
</SheetDescription>
{loading ? (
@@ -160,11 +160,11 @@ export function ViewMetas({ open, onOpenChange, form }: ViewMetasProps) {
) : metadata ? (
<div className="flex flex-col gap-1">
<div className="flex gap-2 items-center">
- <span className="font-semibold">Form Code:</span>
+ <span className="font-semibold">Register ID:</span>
<Badge variant="outline">{metadata.formCode}</Badge>
</div>
<div className="flex gap-2 items-center">
- <span className="font-semibold">Form Name:</span>
+ <span className="font-semibold">Register Description:</span>
<span>{metadata.formName}</span>
</div>
</div>
@@ -265,7 +265,7 @@ export function ViewMetas({ open, onOpenChange, form }: ViewMetasProps) {
<div className="text-center py-8">
<div className="text-lg font-medium">No metadata found</div>
<p className="text-muted-foreground mt-2">
- Could not find metadata for form code: {form.formCode}
+ Could not find metadata for register ID: {form.formCode}
</p>
</div>
)}