Skip to content

Commit

Permalink
Missing parameter (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzsak committed Mar 13, 2023
1 parent d9ce4fd commit f036b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/dashboard/src/views/environments/environmentCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ const EnvironmentCard = ({ store, isOnline, env, deleteEnv, gimletClient, refres
const exactDate = format(rollout.created * 1000, 'h:mm:ss a, MMMM do yyyy');
const dateLabel = formatDistance(rollout.created * 1000, new Date());

renderReleaseStatuses.unshift(rolloutWidget(idx, arr, exactDate, dateLabel, undefined, undefined, undefined, undefined, rollout))
renderReleaseStatuses.unshift(rolloutWidget(idx, arr, exactDate, dateLabel, undefined, undefined, undefined, undefined, rollout, scmUrl))
})

return (
Expand Down

0 comments on commit f036b68

Please sign in to comment.