Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fixup! view: Fetch started at from build info file
Browse files Browse the repository at this point in the history
  • Loading branch information
apostergiou committed Apr 25, 2018
1 parent cd5945b commit bbbfef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mistryd/public/templates/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h4> Logs </h4>

jobInfo.innerHTML += "Project: ".big() + {{.Project}} + "<br>";
jobInfo.innerHTML += "State: ".big() + {{.State}} + "<br>";
jobInfo.innerHTML += "Started At: ".big() + jobJSON["StartedAt"] + "<br>";
jobInfo.innerHTML += "Started At: ".big() + new Date(jobJSON["StartedAt"]) + "<br>";
jobInfo.innerHTML += "Path: ".big() + jobJSON["Path"] + "<br>";
jobInfo.innerHTML += "Params: ".big() + JSON.stringify(jobJSON.Params) + "<br>";
jobInfo.innerHTML += "Cached: ".big() + jobJSON["Cached"] + "<br>";
Expand Down

0 comments on commit bbbfef6

Please sign in to comment.