feat(web): add display number for workflow

This commit is contained in:
BennyKok
2023-12-19 12:19:46 +08:00
parent 59ec8ecb06
commit 39dd760ba0
3 changed files with 8 additions and 3 deletions
+2 -1
View File
@@ -26,9 +26,10 @@ export async function RunDisplay({
className="appearance-none hover:cursor-pointer"
>
<TableRow>
<TableCell>{run.version?.version}</TableCell>
<TableCell>{run.number}</TableCell>
<TableCell className="font-medium">{run.machine?.name}</TableCell>
<TableCell>{getRelativeTime(run.created_at)}</TableCell>
<TableCell>{run.version?.version}</TableCell>
<LiveStatus run={run} />
</TableRow>
</DialogTrigger>