+ |
{type.name}
|
-
+ |
{type.display_name}
|
- {type.color}
+ {type.color}
|
-
-
+ |
+
{type.category}
|
-
+ |
{type.icon || '-'}
|
{type.is_active ? 'Active' : 'Inactive'}
diff --git a/src/app/span-label-types/page.tsx b/src/app/span-label-types/page.tsx
index 3b5c17d..9cdd8fc 100644
--- a/src/app/span-label-types/page.tsx
+++ b/src/app/span-label-types/page.tsx
@@ -167,7 +167,7 @@ export default function SpanLabelTypesPage() {
if (loading) {
return (
-
+
@@ -176,12 +176,12 @@ export default function SpanLabelTypesPage() {
}
return (
-
+
- Span Label Types
- Manage pattern labels for span annotations
+ Span Label Types
+ Manage pattern labels for span annotations
{showAddForm && (
-
+
{editingId !== null ? 'Edit Span Label Type' : 'Add New Span Label Type'}
|