From 80cf91d79e58bd025be528061b3d8996ff314c85 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 13 Aug 2024 17:52:16 -0600 Subject: [PATCH] RunList: sha1 is optional Signed-off-by: Zack Cerza --- src/components/RunList/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RunList/index.tsx b/src/components/RunList/index.tsx index 0ff6115..65e1c1d 100644 --- a/src/components/RunList/index.tsx +++ b/src/components/RunList/index.tsx @@ -125,7 +125,7 @@ const columns: MRT_ColumnDef[] = [ header: "hash", maxSize: 30, Cell: ({ row }) => { - return row.original.sha1.slice(0, 8); + return row.original.sha1?.slice(0, 8); }, }, {