From a5f26c7e31270e59fc98ae49fba42c5b776e5613 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 10 Sep 2024 03:15:56 +0530 Subject: [PATCH] feat: add schedule to column array --- src/components/molecules/RecordingsTable.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 997c4023..6bd3e7ef 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -15,7 +15,7 @@ import { useGlobalInfoStore } from "../../context/globalInfo"; import { deleteRecordingFromStorage, getStoredRecordings } from "../../api/storage"; interface Column { - id: 'interpret' | 'name' | 'create_date' | 'edit' | 'pairs' | 'update_date' | 'delete'; + id: 'interpret' | 'name' | 'create_date' | 'edit' | 'pairs' | 'update_date' | 'delete' | 'schedule'; label: string; minWidth?: number; align?: 'right'; @@ -41,6 +41,11 @@ const columns: readonly Column[] = [ label: 'Pairs', minWidth: 80, }, + { + id: 'schedule', + label: 'Schedule', + minWidth: 80, + }, { id: 'update_date', label: 'Updated at',