From 861b0eea752e332cb20cb1b83a8bb1885e78c537 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 31 Dec 2025 16:18:02 +0100 Subject: pkg/manager/html: fix sorting by "Repro Attempts" column Sorting using numSort for column with empty non-number rows does not work. Always print repro attemps, but make 0 inactive (gray). --- pkg/manager/html/main.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index 43652cbf6..ab279f668 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -31,7 +31,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the First Time Last Time Report - Repro Attempt Count + Repro Attempts @@ -57,7 +57,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Strace {{end}} - {{if $c.ReproAttempts}}{{$c.ReproAttempts}}{{end}} + {{$c.ReproAttempts}} {{end}} -- cgit mrf-deployment