diff --git a/src/components/common/ConfirmDialog.tsx b/src/components/common/ConfirmDialog.tsx index a66e62d..2b7d02b 100644 --- a/src/components/common/ConfirmDialog.tsx +++ b/src/components/common/ConfirmDialog.tsx @@ -30,8 +30,8 @@ export default function ConfirmDialog({ left: 0, right: 0, bottom: 0, - background: 'rgba(0, 0, 0, 0.85)', - backdropFilter: 'blur(4px)', + background: 'var(--rah-backdrop)', + backdropFilter: 'blur(6px)', display: 'flex', alignItems: 'center', justifyContent: 'center', @@ -42,19 +42,19 @@ export default function ConfirmDialog({
| TITLE | -ID | -DESCRIPTION | -SOURCE | -LINK | -CONTEXT | -EDGES | -EVENT | -UPDATED | -CREATED | -METADATA | -CHUNK | -CHUNK STATUS | -EMB UPDATED | -
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
-
-
- {node.title || 'Untitled'}
+
+ {processed ?
- |
+ ) : (
+ —
+ )}
+
- {/* ID */}
- - - {node.id} - - | + + {node.edge_count ?? 0} + - {/* Description */} -
-
-
- {node.description || '\u2014'}
-
-
- |
+
+ {description}
+
- {/* Source */}
-
-
-
- {node.source ? node.source.slice(0, 120) : '\u2014'}
-
-
- |
+
+ {formatRelativeDate(node.updated_at)}
+
- {/* Link */}
-
-
- {node.link ? (
-
-
- |
-
- {/* Context */}
-
-
- {node.context?.name ? (
- <>
-
- {node.context.name}
-
- >
- ) : (
- {'\u2014'}
- )}
-
- |
-
- {/* Edges */}
- - - {node.edge_count ?? 0} - - | - - {/* Event Date */} -- - {formatDate(node.event_date)} - - | - - {/* Updated */} -- - {formatRelativeDate(node.updated_at)} - - | - - {/* Created */} -- - {formatRelativeDate(node.created_at)} - - | - - {/* Metadata */} -
-
-
- {metaStr || '\u2014'}
-
-
- |
-
- {/* Chunk */}
-
-
-
- {node.source ? node.source.slice(0, 100) : '\u2014'}
-
-
- |
-
- {/* Chunk Status */}
- - - {node.chunk_status || '\u2014'} - - | - - {/* Embedding Updated */} -- - {node.embedding_updated_at ? formatRelativeDate(node.embedding_updated_at) : '\u2014'} - - | -