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

Unified Diff: appengine/swarming/elements/res/imp/botlist/bot-list.html

Issue 2249143002: Make TaskList use Dynamic List (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Document that filters is a stub 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/botlist/bot-list.html
diff --git a/appengine/swarming/elements/res/imp/botlist/bot-list.html b/appengine/swarming/elements/res/imp/botlist/bot-list.html
index 1cf1c9bb1ed687a1a05d84d37f4c109be3dec0a6..8e40da0c9267f958251b5ced583447fedce69eae 100644
--- a/appengine/swarming/elements/res/imp/botlist/bot-list.html
+++ b/appengine/swarming/elements/res/imp/botlist/bot-list.html
@@ -355,29 +355,19 @@
// for dynamic table
_columnMap: {
type: Object,
- value: function() {
- return columnMap;
- }
+ value: columnMap,
},
_headerMap: {
type: Object,
- value: function() {
- return headerMap;
- },
+ value: headerMap,
},
- // special columns contain html. non-special (i.e. normal colunns) just
- // contain text.
_specialColumns: {
type: Array,
- value: function() {
- return specialColumns;
- }
+ value: specialColumns,
},
_specialSort: {
type: Object,
- value: function() {
- return specialSort;
- }
+ value: specialSort,
},
},

Powered by Google App Engine
This is Rietveld 408576698