From f8059e89cd5e73f80a7afa159736c7f230d8aed7 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Mon, 9 Sep 2024 16:44:20 +0200 Subject: dashboard/app: set period=quarter for the coverage total page It reminds the parameter is adjustable. --- dashboard/app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- cgit mrf-deployment