From 5232cf0254feea67f22bebab12e4302bb37f74f6 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 28 Mar 2023 17:01:21 +0200 Subject: dashboard: share repro level and report link in SimilarBugInfo This will make FullBugInfo's contents much more useful. --- dashboard/dashapi/dashapi.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'dashboard/dashapi') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index eb6557e41..669629d65 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -716,11 +716,13 @@ type FullBugInfo struct { } type SimilarBugInfo struct { - Title string - Status BugStatus - Namespace string - Link string - Closed time.Time + Title string + Status BugStatus + Namespace string + Link string + ReportLink string + Closed time.Time + ReproLevel ReproLevel } func (dash *Dashboard) LoadFullBug(req *LoadFullBugReq) (*FullBugInfo, error) { -- cgit mrf-deployment