feat: use updatedAt

This commit is contained in:
karishmas6
2024-10-08 20:52:25 +05:30
parent 40d2b573ff
commit 4e3b47d1f1

View File

@@ -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[];
}