diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-09-10 09:31:37 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-09-10 08:08:06 +0000 |
| commit | 67f747a3bcbe7244a637bbb2bf2710c66a44e7b7 (patch) | |
| tree | dc0248444ad5858979c797d177bad1b045878be1 /dashboard/app/templates/templates.html | |
| parent | 2ee7713dc5bbcc1972f75a1083a7e4d777c45f63 (diff) | |
dashboard/app: fix url routing bug
No comments. It was an evening code I guess...
Diffstat (limited to 'dashboard/app/templates/templates.html')
| -rw-r--r-- | dashboard/app/templates/templates.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dashboard/app/templates/templates.html b/dashboard/app/templates/templates.html index 37ea44d7a..b776f4bcd 100644 --- a/dashboard/app/templates/templates.html +++ b/dashboard/app/templates/templates.html @@ -108,12 +108,12 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <button class="dropbtn"><span style="color:DarkOrange;">📈</span>Coverage</button> <div class="dropdown-content"> <a class="navigation_tab{{if eq .URLPath (printf "/%v/graph/coverage" $.Namespace)}}_selected{{end}}" - href="/{{$.Namespace}}/graph/coverage">Total</a> + href="/{{$.Namespace}}/graph/coverage?period=quarter">Total</a> <a class="navigation_tab{{if eq .URLPath (printf "/%v/graph/coverage_heatmap" $.Namespace)}}_selected{{end}}" - href="/{{$.Namespace}}/graph/coverage_heatmap">Repo Heatmap</a> + href="/{{$.Namespace}}/graph/coverage_heatmap?period=month">Repo Heatmap</a> {{ if .ShowSubsystems }} <a class="navigation_tab{{if eq .URLPath (printf "/%v/graph/coverage_subsystems_heatmap" $.Namespace)}}_selected{{end}}" - href="/{{$.Namespace}}/graph/coverage_subsystems_heatmap">Subsystems Heatmap</a> + href="/{{$.Namespace}}/graph/coverage_subsystems_heatmap?period=month">Subsystems Heatmap</a> {{ end }} </div> </div> |
