From 2f1f7b820d384ad68078f9bf36628cc167e8f7b8 Mon Sep 17 00:00:00 2001 From: name2965 <66663783+name2965@users.noreply.github.com> Date: Wed, 27 Aug 2025 21:15:14 +0900 Subject: pkg/manager: add Repro Attempt Count column Add a new column next to it to list the number of repro attempts separately. --- pkg/manager/html/main.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index d034fdded..954cd82f2 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -27,6 +27,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the First Time Last Time Report + Repro Attempt Count {{range $c := $.Crashes}} @@ -35,7 +36,6 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{formatTime $c.FirstTime}} {{formatTime $c.LastTime}} - {{if $c.ReproAttempts}}[{{$c.ReproAttempts}} repro attempts]{{end}} {{if $c.Triaged}} {{$c.Triaged}} {{end}} @@ -43,6 +43,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Strace {{end}} + {{if $c.ReproAttempts}}{{$c.ReproAttempts}}{{end}} {{end}} -- cgit mrf-deployment