From 3ddd77a0a11ca9ac6ecb58ef8ee788cd5367f952 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 31 May 2023 14:05:12 +0200 Subject: dashboard: use correct links to subsystem's fixed bugs Subsystems are now part of labels. Fix the forgotten piece of code. --- dashboard/app/main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard/app/main.go b/dashboard/app/main.go index 8a2a15383..7daa4c1da 100644 --- a/dashboard/app/main.go +++ b/dashboard/app/main.go @@ -1114,7 +1114,10 @@ func createUISubsystem(ns string, item *subsystem.Subsystem, cached *Cached) *ui }, Fixed: uiSubsystemStats{ Count: stats.Fixed, - Link: html.AmendURL("/"+ns+"/fixed", "subsystem", item.Name), + Link: html.AmendURL("/"+ns+"/fixed", "label", BugLabel{ + Label: SubsystemLabel, + Value: item.Name, + }.String()), }, } } -- cgit mrf-deployment