- |
-
- {entry.label || '-'}
- |
- {formatDateTime(entry.createdAt)} |
-
-
-
- {authorDisplayName(entry)}
-
- {entry.authorPublicUserCode?.trim() || '-'}
-
+
+
+
+
+ {children.length ? (
+
+ ) : (
+
+ )}
+
+
+ {entry.label || '-'}
+
-
+ {formatDateTime(entry.createdAt)} |
+
+
+
+ {authorDisplayName(entry)}
+
+ {entry.authorPublicUserCode?.trim() || '-'}
+
+
+
+
+ |
+
+
-
- |
-
-
- |
- {generationCostLabel(entry)} |
-
-
- |
- |
+ |
+ {entry.taskGenerator || entry.generator || '-'} |
+ {taskGenerationCostLabel(entry)} |
+
+
+ |
+
+ {expanded
+ ? children.map((child) => {
+ const childPrompt =
+ child.prompt || child.actualPrompt || '-';
+ return (
+
+
+
+
+
+
+ {child.label || '-'}
+
+
+ |
+ {formatDateTime(child.createdAt)} |
+ {authorDisplayName(child)} |
+
+
+ |
+ {child.generator || '-'} |
+ {stageGenerationCostLabel(child)} |
+
+
+ |
+
+ );
+ })
+ : null}
+
);
})}