From cf1845599c0bdab59c69518eaa0ecb960ec7ddf0 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 26 May 2023 13:03:41 +0200 Subject: dashboard: include tree origin jobs into full bug info --- dashboard/app/reporting.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'dashboard/app/reporting.go') diff --git a/dashboard/app/reporting.go b/dashboard/app/reporting.go index 2a45be82f..f26ddac99 100644 --- a/dashboard/app/reporting.go +++ b/dashboard/app/reporting.go @@ -1456,6 +1456,11 @@ func loadFullBugInfo(c context.Context, bug *Bug, bugKey *db.Key, } ret.Crashes = append(ret.Crashes, rep) } + // Query tree testing jobs. + ret.TreeJobs, err = treeTestJobs(c, bug) + if err != nil { + return nil, err + } return ret, nil } -- cgit mrf-deployment