diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-05-31 14:05:12 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-05-31 15:31:17 +0200 |
| commit | 3ddd77a0a11ca9ac6ecb58ef8ee788cd5367f952 (patch) | |
| tree | c6cfe211e02ba036ba84a7559f1a6fe16d4f6735 | |
| parent | e2a77acd2907882678830511d76d1d9f70b9fa56 (diff) | |
dashboard: use correct links to subsystem's fixed bugs
Subsystems are now part of labels. Fix the forgotten piece of code.
| -rw-r--r-- | dashboard/app/main.go | 5 |
1 files changed, 4 insertions, 1 deletions
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()), }, } } |
