feat: options column
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user