diff options
Diffstat (limited to 'dashboard')
| -rw-r--r-- | dashboard/app/graphs.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dashboard/app/graphs.go b/dashboard/app/graphs.go index 77dcaf13a..69fd9b894 100644 --- a/dashboard/app/graphs.go +++ b/dashboard/app/graphs.go @@ -13,7 +13,6 @@ import ( "strconv" "time" - "github.com/google/syzkaller/pkg/report" "github.com/google/syzkaller/pkg/report/crash" db "google.golang.org/appengine/v2/datastore" ) @@ -370,7 +369,7 @@ func createFoundBugs(c context.Context, bugs []*Bug) *uiGraph { months := make(map[time.Time]map[string]int) for _, bug := range bugs { for _, typ := range types { - if !typ.pred(report.TitleToCrashType(bug.Title)) { + if !typ.pred(crash.TitleToType(bug.Title)) { continue } t := bug.FirstTime |
