summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-04-29 03:05:58 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-04-29 03:05:58 +0000
commita20fbfc2d1b22f2dd37d1f714fa7408065aef6f1 (patch)
tree403404026e57a902d77b9b1210abd08343de9228
parent85fbd5a671cd8547c8eda7b0aa21231f9807454f (diff)
[no 17] tag-numbering 컬럼명 수정(kyumchoi)
-rw-r--r--config/tagNumberingColumnsConfig.ts16
-rw-r--r--lib/tag-numbering/table/tagNumbering-table.tsx11
2 files changed, 16 insertions, 11 deletions
diff --git a/config/tagNumberingColumnsConfig.ts b/config/tagNumberingColumnsConfig.ts
index 3a8f7951..85b43d1f 100644
--- a/config/tagNumberingColumnsConfig.ts
+++ b/config/tagNumberingColumnsConfig.ts
@@ -23,8 +23,8 @@ export const tagNumberingColumnsConfig: TagNumberingColumnConfig[] = [
},
{
id: "tagTypeCode",
- label: "Tag Type Code",
- excelHeader: "Tag Type Code"
+ label: "TYPE ID",
+ excelHeader: "TYPE ID"
// group: "Basic Info",
},
{
@@ -35,8 +35,8 @@ export const tagNumberingColumnsConfig: TagNumberingColumnConfig[] = [
},
{
id: "attributesId",
- label: "Attributes Id",
- excelHeader:"Attributes Id",
+ label: "Attribute",
+ excelHeader:"Attribute",
// group: "Basic Info",
},
{
@@ -48,14 +48,14 @@ export const tagNumberingColumnsConfig: TagNumberingColumnConfig[] = [
{
id: "expression",
- label: "expression",
- excelHeader:"expression",
+ label: "Reg_Exps",
+ excelHeader:"Reg_Exps",
// group: "Basic Info",
},
{
id: "delimiter",
- label: "delimiter",
- excelHeader:"delimiter",
+ label: "Separator",
+ excelHeader:"Separator",
// group: "Basic Info",
},
{
diff --git a/lib/tag-numbering/table/tagNumbering-table.tsx b/lib/tag-numbering/table/tagNumbering-table.tsx
index 847b3eeb..1a8f6aa8 100644
--- a/lib/tag-numbering/table/tagNumbering-table.tsx
+++ b/lib/tag-numbering/table/tagNumbering-table.tsx
@@ -78,7 +78,7 @@ export function TagNumberingTable({ promises }: ItemsTableProps) {
},
{
id: "tagTypeCode",
- label: "Tag Type Code",
+ label: "TYPE ID",
type: "text",
},
{
@@ -89,7 +89,7 @@ export function TagNumberingTable({ promises }: ItemsTableProps) {
{
id: "attributesId",
- label: "Attributes Id",
+ label: "Attribute",
type: "text",
},
@@ -100,7 +100,12 @@ export function TagNumberingTable({ promises }: ItemsTableProps) {
},
{
id: "expression",
- label: "expression",
+ label: "Reg_Exps",
+ type: "text",
+ },
+ {
+ id: "delimiter",
+ label: "Separator",
type: "text",
},
{