diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-08-06 11:19:56 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-08-07 09:24:57 +0000 |
| commit | c03873ec186a3b88b345caaa713a57c5f6ea9c9b (patch) | |
| tree | 8cba7dc1736e086f2697535ff432e6aef9a0118d /pkg/manager/html/main.html | |
| parent | 3ba98b073d93c50bf808f43b482702184f6da7c5 (diff) | |
pkg/manager: embed BugInfo into UICrashType
This reduces the redundancy a bit.
Diffstat (limited to 'pkg/manager/html/main.html')
| -rw-r--r-- | pkg/manager/html/main.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index eb3644bba..d034fdded 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -30,8 +30,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the </tr> {{range $c := $.Crashes}} <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="title"><a href="/crash?id={{$c.ID}}">{{$c.Title}}</a></td> + <td class="stat {{if not $c.Active}}inactive{{end}}">{{len $c.Crashes}}</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> @@ -39,8 +39,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{if $c.Triaged}} <a href="/report?id={{$c.ID}}">{{$c.Triaged}}</a> {{end}} - {{if $c.Strace}} - <a href="/file?name={{$c.Strace}}">Strace</a> + {{if $c.StraceFile}} + <a href="/file?name={{$c.StraceFile}}">Strace</a> {{end}} </td> </tr> |
