+
+
+
+ ID
+ {t("model")}
+ {t("language")}
+ {t("date")}
+ {t("actions")}
+
+
+
+ {transcriptions.map((tr) => (
+
+
+ {tr.id.split("-")[0]}
+
+
+ {tr.engine}
+ {tr.model}
+
+
+ {tr.language || "-"}
+
+
+ {formatDateTime(tr.createdAt)}
+
+
+ {transcription?.id === tr.id ? (
+
+ ) : (
+
+ )}
+
+
+ ))}
+
+
+
+
+
+ {currentPage}
+
+
+
+ );
+};
diff --git a/enjoy/src/types/transcription.d.ts b/enjoy/src/types/transcription.d.ts
index 96441326..827dce7d 100644
--- a/enjoy/src/types/transcription.d.ts
+++ b/enjoy/src/types/transcription.d.ts
@@ -8,6 +8,8 @@ type TranscriptionType = {
model: string;
language?: string;
result: AlignmentResult & { original?: string };
+ createdAt: string;
+ updatedAt: string;
};
type TranscriptionResultSegmentType = {