diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2025-01-17 10:23:56 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2025-01-17 10:17:44 +0000 |
| commit | 953d1c45a16b7284725e337b47369a8ab111bab4 (patch) | |
| tree | 9e6f77d744cd85ff1def42ce3864e7c6f0541ccd /pkg/manager/html | |
| parent | bb91bdd45a9407e6594eb36266e74db1e50210a0 (diff) | |
pkg/manager: show bug first time
This allows to understand if a bug is new
(found in the current run) or old.
Diffstat (limited to 'pkg/manager/html')
| -rw-r--r-- | pkg/manager/html/main.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index 1b4ea0f75..2b0cb2250 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -24,6 +24,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <tr> <th><a onclick="return sortTable(this, 'Description', textSort)" href="#">Description</a></th> <th><a onclick="return sortTable(this, 'Count', numSort)" href="#">Count</a></th> + <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> </tr> @@ -31,6 +32,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <tr> <td class="title"><a href="/crash?id={{$c.ID}}">{{$c.Description}}</a></td> <td class="stat {{if not $c.Active}}inactive{{end}}">{{$c.Count}}</td> + <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.Triaged}} |
