feat: use createdAt

This commit is contained in:
karishmas6
2024-10-08 20:51:12 +05:30
parent 5c602ed882
commit 8ce7246673

View File

@@ -16,7 +16,7 @@ import { useGlobalInfoStore } from "../../context/globalInfo";
import { deleteRecordingFromStorage, getStoredRecordings } from "../../api/storage";
interface Column {
id: 'interpret' | 'name' | 'create_date' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate';
id: 'interpret' | 'name' | 'createdAt' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate';
label: string;
minWidth?: number;
align?: 'right';
@@ -27,7 +27,7 @@ const columns: readonly Column[] = [
{ id: 'interpret', label: 'Run', minWidth: 80 },
{ id: 'name', label: 'Name', minWidth: 80 },
{
id: 'create_date',
id: 'createdAt',
label: 'Created at',
minWidth: 80,
//format: (value: string) => value.toLocaleString('en-US'),
@@ -63,7 +63,7 @@ const columns: readonly Column[] = [
interface Data {
id: number;
name: string;
create_date: string;
createdAt: string;
update_date: string;
content: WorkflowFile;
params: string[];