From: David Symonds Date: Mon, 30 Jul 2012 01:45:17 +0000 (+1000) Subject: misc/dashboard/codereview: make all active CL tables hold up to 50 CLs. X-Git-Tag: go1.1rc2~2753 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be629bf79ee8edd0c52caa8a46cb63eb38e55d79;p=gostls13.git misc/dashboard/codereview: make all active CL tables hold up to 50 CLs. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6449060 --- diff --git a/misc/dashboard/codereview/dashboard/front.go b/misc/dashboard/codereview/dashboard/front.go index 970ed3e1a0..5c3a88b136 100644 --- a/misc/dashboard/codereview/dashboard/front.go +++ b/misc/dashboard/codereview/dashboard/front.go @@ -55,7 +55,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) { if data.UserIsReviewer { tableFetch(0, func(tbl *clTable) error { - q := activeCLs.Filter("Reviewer =", currentPerson).Limit(10) + q := activeCLs.Filter("Reviewer =", currentPerson).Limit(50) tbl.Title = "CLs assigned to you for review" tbl.Assignable = true _, err := q.GetAll(c, &tbl.CLs) @@ -64,7 +64,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) { } tableFetch(1, func(tbl *clTable) error { - q := activeCLs.Filter("Author =", currentPerson).Limit(10) + q := activeCLs.Filter("Author =", currentPerson).Limit(50) tbl.Title = "CLs sent by you" tbl.Assignable = true _, err := q.GetAll(c, &tbl.CLs)