Skip to content

Commit

Permalink
GitHub Deployments: Use run date in deployments run list item (#88473)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaguiini authored Mar 13, 2024
1 parent 5c1c9d5 commit c2627bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const DeploymentsRunItem = ( { run }: DeploymentsListItemProps ) => {
<DeploymentStatus status={ run.status as DeploymentStatusValue } />
</td>
<td>
<span>{ formatDate( locale, new Date( deployment.updated_on ) ) }</span>
<span>{ formatDate( locale, new Date( run.created_on ) ) }</span>
</td>
<td>
<DeploymentDuration run={ run } />
Expand Down

0 comments on commit c2627bf

Please sign in to comment.