From adcc7e86ec13942a38f570da290c14446ccf0fc5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 28 Sep 2020 11:51:07 +0200 Subject: 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. --- dashboard/app/templates.html | 8 ++++---- 1 file 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}} Fix bisection: failed {{end}} - ({{link .LogLink "bisect log"}})
+ ({{link .LogLink "bisect log"}})
{{else if .Commit}} {{if eq .Type $causeJob}} Cause bisection: introduced by @@ -288,11 +288,11 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{else}} {{if eq .Type $causeJob}} - Cause bisection: the bug happens on the oldest tested release + Cause bisection: the issue happens on the oldest tested release {{else if eq .Type $fixJob}} - Fix bisection: the bug occurs on the latest tested release + Fix bisection: the issue occurs on the latest tested release {{end}} -
+ ({{link .LogLink "bisect log"}})
{{end}} {{if .CrashLogLink}} Crash: {{link .CrashReportLink .CrashTitle}} ({{link .CrashLogLink "log"}})
-- cgit mrf-deployment