Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1477)

Unified Diff: appengine/swarming/elements/res/imp/tasklist/task-filters.html

Issue 2366603002: Fix limits (Closed) Base URL: git@github.com:luci/luci-py@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/elements/res/imp/botlist/bot-filters.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/elements/res/imp/tasklist/task-filters.html
diff --git a/appengine/swarming/elements/res/imp/tasklist/task-filters.html b/appengine/swarming/elements/res/imp/tasklist/task-filters.html
index 95cd49d96108e4dd3538767d651f3560999c8d2c..b90da1a483887c6038c3643439c3ee38e8dbb504 100644
--- a/appengine/swarming/elements/res/imp/tasklist/task-filters.html
+++ b/appengine/swarming/elements/res/imp/tasklist/task-filters.html
@@ -235,7 +235,7 @@
// Clamp the limit
lim = Math.max(lim, 1);
lim = Math.min(1000, lim);
- params["_limit"] = [lim];
+ params["limit"] = [lim];
// not !== because limit could be the string "900"
if (this._limit != lim) {
this.set("_limit", lim);
« no previous file with comments | « appengine/swarming/elements/res/imp/botlist/bot-filters.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698