aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard/app/templates.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html
index 1ea3fbcad..bc3ae3ded 100644
--- a/dashboard/app/templates.html
+++ b/dashboard/app/templates.html
@@ -404,11 +404,10 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{if $job.ErrorLink}}
{{link $job.ErrorLink "error"}}
{{else if $job.LogLink}}
- {{link $job.LogLink "log"}}
+ {{link $job.LogLink "job log"}}
({{if $job.Commit}}1{{else}}{{len $job.Commits}}{{end}})
{{else if $job.CrashTitle}}
{{optlink $job.CrashReportLink "report"}}
- {{optlink $job.CrashLogLink "log"}}
{{else if formatTime $job.Finished}}
OK
{{else if formatTime $job.Started}}
@@ -416,6 +415,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{else}}
pending
{{end}}
+ {{if $job.CrashLogLink}}
+ {{optlink $job.CrashLogLink "log"}}
+ {{end}}
</td>
</tr>
{{end}}