Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/components/BuildDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ const BuildDetails: React.FunctionComponent = () => {
{formatDateTime(selectedBuild.createdAt)}
</Typography>
</Grid>
{selectedBuild.updatedAt && (
<Grid item>
<Typography variant="caption" color="textSecondary">
Last run: {formatDateTime(selectedBuild.updatedAt)}
</Typography>
</Grid>
)}
</Grid>
</Box>
</Grid>
Expand Down
7 changes: 7 additions & 0 deletions src/components/BuildList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,13 @@ const BuildList: FunctionComponent = () => {
{formatDateTime(build.createdAt)}
</Typography>
</Grid>
{build.updatedAt && (
<Grid item>
<Typography variant="caption" color="textSecondary">
Last run: {formatDateTime(build.updatedAt)}
</Typography>
</Grid>
)}
<Grid item>
<Grid container justifyContent="space-between">
<Grid item>
Expand Down
1 change: 1 addition & 0 deletions src/types/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface Build {
branchName: string;
status: BuildStatus;
createdAt: string;
updatedAt: string;
createdBy: string;
testRuns: TestRun[];

Expand Down
Loading