From b32c9df6f792eaed28e27e53256d323c1e9219d1 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 25 Jan 2024 16:08:06 -0700 Subject: [PATCH] JobList: Drop hover text Now that we have expandos, we don't need the tooltips. Signed-off-by: Zack Cerza --- src/components/JobList/index.tsx | 14 -------------- 1 file changed, 14 deletions(-) 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",