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"; import { deleteRecordingFromStorage, getStoredRecordings } from "../../api/storage";
interface Column { interface Column {
id: 'interpret' | 'name' | 'createdAt' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate'; id: 'interpret' | 'name' | 'createdAt' | 'edit' | 'updatedAt' | 'delete' | 'schedule' | 'integrate';
label: string; label: string;
minWidth?: number; minWidth?: number;
align?: 'right'; align?: 'right';
@@ -48,7 +48,7 @@ const columns: readonly Column[] = [
minWidth: 80, minWidth: 80,
}, },
{ {
id: 'update_date', id: 'updatedAt',
label: 'Updated at', label: 'Updated at',
minWidth: 80, minWidth: 80,
//format: (value: string) => value.toLocaleString('en-US'), //format: (value: string) => value.toLocaleString('en-US'),
@@ -64,7 +64,7 @@ interface Data {
id: number; id: number;
name: string; name: string;
createdAt: string; createdAt: string;
update_date: string; updatedAt: string;
content: WorkflowFile; content: WorkflowFile;
params: string[]; params: string[];
} }