diff options
| -rw-r--r-- | dashboard/app/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/main.go b/dashboard/app/main.go index 9e4652410..596b52924 100644 --- a/dashboard/app/main.go +++ b/dashboard/app/main.go @@ -65,7 +65,7 @@ func initHTTPHandlers() { http.Handle("/"+ns+"/graph/crashes", handlerWrapper(handleGraphCrashes)) http.Handle("/"+ns+"/graph/found-bugs", handlerWrapper(handleFoundBugsGraph)) if nsConfig.Coverage != nil { - http.Handle("/"+ns+"/graph/coverage", handlerWrapper(handleCoverageGraph)) + http.Handle("/"+ns+"/graph/coverage?period=quarter", handlerWrapper(handleCoverageGraph)) http.Handle("/"+ns+"/graph/coverage_heatmap?period=month", handlerWrapper(handleCoverageHeatmap)) if nsConfig.Subsystems.Service != nil { http.Handle("/"+ns+"/graph/coverage_subsystems_heatmap?period=month", |
