diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 15c9fc82..251356bd 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -16,7 +16,7 @@ import { useGlobalInfoStore } from "../../context/globalInfo"; import { deleteRecordingFromStorage, getStoredRecordings } from "../../api/storage"; interface Column { - id: 'interpret' | 'name' | 'createdAt' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate'; + id: 'interpret' | 'name' | 'createdAt' | 'edit' | 'updatedAt' | 'delete' | 'schedule' | 'integrate'; label: string; minWidth?: number; align?: 'right'; @@ -48,7 +48,7 @@ const columns: readonly Column[] = [ minWidth: 80, }, { - id: 'update_date', + id: 'updatedAt', label: 'Updated at', minWidth: 80, //format: (value: string) => value.toLocaleString('en-US'), @@ -64,7 +64,7 @@ interface Data { id: number; name: string; createdAt: string; - update_date: string; + updatedAt: string; content: WorkflowFile; params: string[]; }