1
0
mirror of https://github.com/golang/go synced 2024-09-30 22:48:32 -06:00

dashboard: fix perf graph view

1. Add missing comma to empty records after addition of Ann column.
2. Fix off-by-one in commit range calculation.
Release tags refer to the last commit of the release,
so there is no need to subtract 1 from them.

TBR=adg
R=adg, bradfitz
CC=golang-codereviews
https://golang.org/cl/157120043
This commit is contained in:
Dmitriy Vyukov 2014-10-18 14:39:02 +04:00
parent e2b4e09ae1
commit 78ab88e721
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ func perfGraphHandler(w http.ResponseWriter, r *http.Request) {
logErr(w, r, err)
return
}
startCommitNum = comFrom.Num - 1
startCommitNum = comFrom.Num
retry:
if commitTo == "tip" {
@ -87,7 +87,7 @@ func perfGraphHandler(w http.ResponseWriter, r *http.Request) {
logErr(w, r, err)
return
}
endCommitNum = comTo.Num
endCommitNum = comTo.Num + 1
}
if endCommitNum <= startCommitNum {
// User probably selected from:go1.3 to:go1.2. Fix go1.2 to tip.

View File

@ -29,7 +29,7 @@
{{if .Val}}
{{.Val}}, {{.Certainty}}, '{{.Hint}}', '{{.Ann}}',
{{else}}
,,,
,,,,
{{end}}
{{end}}
],