diff --git a/src/components/JobList/index.tsx b/src/components/JobList/index.tsx index 407f0de..c836e65 100644 --- a/src/components/JobList/index.tsx +++ b/src/components/JobList/index.tsx @@ -28,20 +28,6 @@ const columns: MRT_ColumnDef[] = [ accessorKey: "status", size: 120, filterVariant: "select", - // filterSelectOptions: ["pass", "fail", "dead", "running", "waiting", "unknown"], - Cell: ({ row }) => { - let failure_reason = row.original.failure_reason || ""; - const max_length = 800; - const ellipsis = "..."; - if ( failure_reason.length > max_length ) { - failure_reason = failure_reason.substring(0, max_length - ellipsis.length) + ellipsis; - } - return ( - - {row.original.status} - - ); - } }, { header: "links",