summaryrefslogtreecommitdiff
path: root/lib/equip-class/table/equipClass-table.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/equip-class/table/equipClass-table.tsx')
-rw-r--r--lib/equip-class/table/equipClass-table.tsx27
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