feat: options column

This commit is contained in:
amhsirak
2024-11-16 22:49:48 +05:30
parent c0a3ad909b
commit dc098025c6

View File

@@ -26,7 +26,7 @@ import { GenericModal } from '../atoms/GenericModal';
*/ */
interface Column { interface Column {
id: 'interpret' | 'name' | 'delete' | 'schedule' | 'integrate' | 'settings'; id: 'interpret' | 'name' | 'delete' | 'schedule' | 'integrate' | 'settings' | 'options';
label: string; label: string;
minWidth?: number; minWidth?: number;
align?: 'right'; align?: 'right';
@@ -73,6 +73,11 @@ const columns: readonly Column[] = [
label: 'Delete', label: 'Delete',
minWidth: 80, minWidth: 80,
}, },
{
id: 'options',
label: 'Options',
minWidth: 80,
},
]; ];
interface Data { interface Data {