diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-17 10:50:28 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-17 10:50:28 +0000 |
| commit | fb276ed3db86fe4fc0c0fcd870fd3d085b034be0 (patch) | |
| tree | 4a8ab1027d7fd14602a0f837d4e18b04e2169e58 /lib/equip-class/table/equipClass-table.tsx | |
| parent | 4eb7532f822c821fb6b69bf103bd075fefba769b (diff) | |
(대표님) 벤더데이터 S-EDP 변경사항 대응(seperator), 정기평가 점수오류, dim 준비
Diffstat (limited to 'lib/equip-class/table/equipClass-table.tsx')
| -rw-r--r-- | lib/equip-class/table/equipClass-table.tsx | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/lib/equip-class/table/equipClass-table.tsx b/lib/equip-class/table/equipClass-table.tsx index efb3a852..04348c54 100644 --- a/lib/equip-class/table/equipClass-table.tsx +++ b/lib/equip-class/table/equipClass-table.tsx @@ -51,7 +51,6 @@ export function EquipClassTable({ promises }: ItemsTableProps) { * @prop {boolean} [withCount] - An optional boolean to display the count of the filter option. */ const filterFields: DataTableFilterField<ExtendedTagClasses>[] = [ - ] /** @@ -69,31 +68,41 @@ export function EquipClassTable({ promises }: ItemsTableProps) { id: "code", label: "Class ID", type: "text", - // group: "Basic Info", + group: "Basic Info", }, { id: "label", label: "Description", type: "text", - // group: "Basic Info", + group: "Basic Info", + }, + { + id: "tagTypeCode", + label: "Type ID", + type: "text", + group: "Basic Info", + }, + // 서브클래스 관련 필터 추가 + { + id: "subclasses", + label: "Subclasses", + type: "text", + group: "Hierarchy", }, - - { id: "createdAt", label: "Created At", type: "date", - // group: "Metadata",a + group: "Metadata", }, { id: "updatedAt", label: "Updated At", type: "date", - // group: "Metadata", + group: "Metadata", }, ] - const { table } = useDataTable({ data, columns, @@ -125,4 +134,4 @@ export function EquipClassTable({ promises }: ItemsTableProps) { </DataTable> </> ) -} +}
\ No newline at end of file |
