feat: remove pairs from recordings table

This commit is contained in:
Naveen Pandey
2024-09-20 19:53:40 +05:30
committed by GitHub
parent db601b4c9f
commit 940a6f25d5

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' | 'pairs' | 'update_date' | 'delete' | 'schedule' | 'integrate';
id: 'interpret' | 'name' | 'create_date' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate';
label: string;
minWidth?: number;
align?: 'right';
@@ -37,11 +37,6 @@ const columns: readonly Column[] = [
label: 'Edit',
minWidth: 80,
},
{
id: 'pairs',
label: 'Pairs',
minWidth: 80,
},
{
id: 'schedule',
label: 'Schedule',
@@ -69,7 +64,6 @@ interface Data {
id: number;
name: string;
create_date: string;
pairs: number;
update_date: string;
content: WorkflowFile;
params: string[];
@@ -273,4 +267,4 @@ const IntegrateButton = ({ handleIntegrate }: IntegrateButtonProps) => {
<LinkIcon />
</IconButton>
)
}
}