We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2342cb6 + 6950c85 commit ae5f377Copy full SHA for ae5f377
src/components/RunList/index.tsx
@@ -125,7 +125,7 @@ const columns: MRT_ColumnDef<Run>[] = [
125
header: "hash",
126
maxSize: 30,
127
Cell: ({ row }) => {
128
- return row.original.sha1.slice(0, 8);
+ return row.original.sha1?.slice(0, 8);
129
},
130
131
{
src/lib/paddles.d.ts
@@ -72,7 +72,7 @@ export type Run = {
72
updated: string;
73
started: string;
74
runtime: string;
75
- sha1: string;
+ sha1: string | null;
76
results: RunResults;
77
machine_type: string;
78
status: RunStatus;
0 commit comments