diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-05-26 13:03:41 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-05-26 13:52:20 +0200 |
| commit | cf1845599c0bdab59c69518eaa0ecb960ec7ddf0 (patch) | |
| tree | 0efc6da35eefd2f1ce2caabf46ee8c399aa8ed5a /dashboard/app/reporting.go | |
| parent | 1497c3f6913e5ca4d74befc14791f14dd4bc5a70 (diff) | |
dashboard: include tree origin jobs into full bug info
Diffstat (limited to 'dashboard/app/reporting.go')
| -rw-r--r-- | dashboard/app/reporting.go | 5 |
1 files changed, 5 insertions, 0 deletions
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 } |
