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

Unified Diff: appengine/swarming/elements/res/imp/common/dynamic-table-behavior.html

Issue 2266133002: Add filter to task-list (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@extract-filters
Patch Set: Fix default sort Created 4 years, 4 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/common/dynamic-table-behavior.html
diff --git a/appengine/swarming/elements/res/imp/common/dynamic-table-behavior.html b/appengine/swarming/elements/res/imp/common/dynamic-table-behavior.html
index 71c3fef6033cb95f5debc2d4a61ed1dc0379d303..ae054dd18ed08da68da59e10ed7d756451d46b60 100644
--- a/appengine/swarming/elements/res/imp/common/dynamic-table-behavior.html
+++ b/appengine/swarming/elements/res/imp/common/dynamic-table-behavior.html
@@ -217,14 +217,6 @@
_commonColumns: function() {
// return a fresh object so all elements have their own copy
return {
- android_devices: function(bot) {
- var devs = this._attribute(bot, "android_devices", "0");
- if (this._verbose) {
- return devs.join(" | ") + " devices available";
- }
- // max() works on strings as long as they can be coerced to Number.
- return Math.max(...devs) + " devices available";
- },
device_type: function(bot) {
var dt = this._attribute(bot, "device_type", "none");
dt = dt[0];

Powered by Google App Engine
This is Rietveld 408576698