Skip to content

Commit

Permalink
RunList: sha1 is optional
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc committed Aug 13, 2024
1 parent 6fe3833 commit 80cf91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RunList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const columns: MRT_ColumnDef<Run>[] = [
header: "hash",
maxSize: 30,
Cell: ({ row }) => {
return row.original.sha1.slice(0, 8);
return row.original.sha1?.slice(0, 8);
},
},
{
Expand Down

0 comments on commit 80cf91d

Please sign in to comment.