aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorname2965 <66663783+name2965@users.noreply.github.com>2025-08-27 21:15:14 +0900
committerAleksandr Nogikh <nogikh@google.com>2025-08-28 08:38:50 +0000
commit2f1f7b820d384ad68078f9bf36628cc167e8f7b8 (patch)
tree9f579d954ac7bd09530c378627c4fc4dc39bcee8 /pkg
parent74e8e8f5469dcac539f57af8e93ca361117d26c2 (diff)
pkg/manager: add Repro Attempt Count column
Add a new column next to it to list the number of repro attempts separately.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/manager/html/main.html3
1 files changed, 2 insertions, 1 deletions
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
<th><a onclick="return sortTable(this, 'First Time', textSort, true)" href="#">First Time</a></th>
<th><a onclick="return sortTable(this, 'Last Time', textSort, true)" href="#">Last Time</a></th>
<th><a onclick="return sortTable(this, 'Report', textSort)" href="#">Report</a></th>
+ <th><a onclick="return sortTable(this, 'Repro Attempt Count', numSort)" href="#">Repro Attempt Count</a></th>
</tr>
{{range $c := $.Crashes}}
<tr>
@@ -35,7 +36,6 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<td class="time {{if not $c.New}}inactive{{end}}">{{formatTime $c.FirstTime}}</td>
<td class="time {{if not $c.Active}}inactive{{end}}">{{formatTime $c.LastTime}}</td>
<td>
- {{if $c.ReproAttempts}}[{{$c.ReproAttempts}} repro attempts]{{end}}
{{if $c.Triaged}}
<a href="/report?id={{$c.ID}}">{{$c.Triaged}}</a>
{{end}}
@@ -43,6 +43,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<a href="/file?name={{$c.StraceFile}}">Strace</a>
{{end}}
</td>
+ <td class="stat">{{if $c.ReproAttempts}}{{$c.ReproAttempts}}{{end}}</td>
</tr>
{{end}}
</table>