aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-09-28 11:51:07 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-09-28 12:21:14 +0200
commitadcc7e86ec13942a38f570da290c14446ccf0fc5 (patch)
tree45fefbb50b49826f81805200032f49b991b8dede
parentbc26d8bddd75c191e3aa61babd0138d9a07b009c (diff)
dashboard/app: show log for all bisections
We forgot to show the bisection log for one of 4 bisection outcomes. Consistently show it for all outcomes.
-rw-r--r--dashboard/app/templates.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html
index 12a9b524c..f6839a594 100644
--- a/dashboard/app/templates.html
+++ b/dashboard/app/templates.html
@@ -259,7 +259,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{else if eq .Type $fixJob}}
<b>Fix bisection: failed</b>
{{end}}
- ({{link .LogLink "bisect log"}})</b><br>
+ <b>({{link .LogLink "bisect log"}})</b><br>
{{else if .Commit}}
{{if eq .Type $causeJob}}
<b>Cause bisection: introduced by</b>
@@ -288,11 +288,11 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
</span>
{{else}}
{{if eq .Type $causeJob}}
- <b>Cause bisection: the bug happens on the oldest tested release</b>
+ <b>Cause bisection: the issue happens on the oldest tested release</b>
{{else if eq .Type $fixJob}}
- <b>Fix bisection: the bug occurs on the latest tested release</b>
+ <b>Fix bisection: the issue occurs on the latest tested release</b>
{{end}}
- <br>
+ <b>({{link .LogLink "bisect log"}})</b><br>
{{end}}
{{if .CrashLogLink}}
Crash: {{link .CrashReportLink .CrashTitle}} ({{link .CrashLogLink "log"}})<br>