From d401b9d77980e7469e1c6eaa282f33df0fcfb3df Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Thu, 21 Aug 2025 19:00:20 +0200 Subject: pkg/manager: add Rank column with tooltips to the main page --- pkg/manager/html/main.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkg/manager/html/main.html') diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index 42e92ac2b..43652cbf6 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -26,6 +26,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Description + Rank Count First Time Last Time @@ -37,6 +38,14 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{range $c := $.Crashes}} {{$c.Title}} + + {{if $c.RankTooltip}} + {{$c.Rank}} +
{{$c.RankTooltip}}
+ {{else}} + {{$c.Rank}} + {{end}} + {{len $c.Crashes}} {{formatTime $c.FirstTime}} {{formatTime $c.LastTime}} -- cgit mrf-deployment