diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index c5895193..1531c0a7 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -26,7 +26,7 @@ import { GenericModal } from '../atoms/GenericModal'; */ interface Column { - id: 'interpret' | 'name' | 'delete' | 'schedule' | 'integrate' | 'settings'; + id: 'interpret' | 'name' | 'delete' | 'schedule' | 'integrate' | 'settings' | 'options'; label: string; minWidth?: number; align?: 'right'; @@ -73,6 +73,11 @@ const columns: readonly Column[] = [ label: 'Delete', minWidth: 80, }, + { + id: 'options', + label: 'Options', + minWidth: 80, + }, ]; interface Data {