From f6511626584e1f100818d9036909e0480ffd34c1 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 13 Dec 2022 12:25:52 +0100 Subject: dashboard: return bisection info as BugReport object Bisection jobs can refer to other crashes/builds, so for the full bug info we need complete BugReport objects. --- dashboard/dashapi/dashapi.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 0c2db1ac7..c90243cb7 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -644,8 +644,8 @@ type LoadFullBugReq struct { type FullBugInfo struct { SimilarBugs []*SimilarBugInfo - BisectCause *BisectResult - BisectFix *BisectResult + BisectCause *BugReport + BisectFix *BugReport Crashes []*BugReport } -- cgit mrf-deployment