From c03873ec186a3b88b345caaa713a57c5f6ea9c9b Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 6 Aug 2025 11:19:56 +0200 Subject: pkg/manager: embed BugInfo into UICrashType This reduces the redundancy a bit. --- pkg/manager/html/main.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkg/manager/html/main.html') 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 {{range $c := $.Crashes}} - {{$c.Description}} - {{$c.Count}} + {{$c.Title}} + {{len $c.Crashes}} {{formatTime $c.FirstTime}} {{formatTime $c.LastTime}} @@ -39,8 +39,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{if $c.Triaged}} {{$c.Triaged}} {{end}} - {{if $c.Strace}} - Strace + {{if $c.StraceFile}} + Strace {{end}} -- cgit mrf-deployment