Skip to content

Commit ae5f377

Browse files
authored
Merge pull request #81 from ceph/pr-80-fix
Fix a regression in sha1 handling
2 parents 2342cb6 + 6950c85 commit ae5f377

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/RunList/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const columns: MRT_ColumnDef<Run>[] = [
125125
header: "hash",
126126
maxSize: 30,
127127
Cell: ({ row }) => {
128-
return row.original.sha1.slice(0, 8);
128+
return row.original.sha1?.slice(0, 8);
129129
},
130130
},
131131
{

src/lib/paddles.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export type Run = {
7272
updated: string;
7373
started: string;
7474
runtime: string;
75-
sha1: string;
75+
sha1: string | null;
7676
results: RunResults;
7777
machine_type: string;
7878
status: RunStatus;

0 commit comments

Comments
 (0)