Commit be629bf7 authored by David Symonds's avatar David Symonds

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
parent 3fe5f335
...@@ -55,7 +55,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) { ...@@ -55,7 +55,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) {
if data.UserIsReviewer { if data.UserIsReviewer {
tableFetch(0, func(tbl *clTable) error { 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.Title = "CLs assigned to you for review"
tbl.Assignable = true tbl.Assignable = true
_, err := q.GetAll(c, &tbl.CLs) _, err := q.GetAll(c, &tbl.CLs)
...@@ -64,7 +64,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) { ...@@ -64,7 +64,7 @@ func handleFront(w http.ResponseWriter, r *http.Request) {
} }
tableFetch(1, func(tbl *clTable) error { 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.Title = "CLs sent by you"
tbl.Assignable = true tbl.Assignable = true
_, err := q.GetAll(c, &tbl.CLs) _, err := q.GetAll(c, &tbl.CLs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment