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

Unified Diff: appengine/swarming/elements/res/imp/botlist/bot-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
Index: appengine/swarming/elements/res/imp/botlist/bot-filters.html
diff --git a/appengine/swarming/elements/res/imp/botlist/bot-filters.html b/appengine/swarming/elements/res/imp/botlist/bot-filters.html
index 4e5ae28af0dc6a75816ce80dbf5b41ba76814069..4001a457b84bf2c53b3e853fdc6b2ebde18874d0 100644
--- a/appengine/swarming/elements/res/imp/botlist/bot-filters.html
+++ b/appengine/swarming/elements/res/imp/botlist/bot-filters.html
@@ -278,7 +278,7 @@ the fleet.">
// Clamp the limit
lim = Math.max(lim, 1);
lim = Math.min(1000, lim);
- params["_limit"] = [lim];
+ params["limit"] = [lim];
// not !== because limit could be a string, e.g. "900"
if (this._limit != lim) {
this.set("_limit", lim);
« no previous file with comments | « appengine/swarming/elements/build/elements.html ('k') | appengine/swarming/elements/res/imp/tasklist/task-filters.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698