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

Unified Diff: appengine/swarming/ui/res/imp/botlist/bot-filters.html

Issue 2513613002: Add informational messages to clarify what can be filtered on. (Closed)
Patch Set: Tweak spacing Created 4 years, 1 month 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/ui/build/elements.html ('k') | appengine/swarming/ui/res/imp/botlist/bot-list.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/ui/res/imp/botlist/bot-filters.html
diff --git a/appengine/swarming/ui/res/imp/botlist/bot-filters.html b/appengine/swarming/ui/res/imp/botlist/bot-filters.html
index d6862bd9c32de7911d64aa03ca5be0e723fb4164..699f7fc18e56647e3cad412964751905fe36e221 100644
--- a/appengine/swarming/ui/res/imp/botlist/bot-filters.html
+++ b/appengine/swarming/ui/res/imp/botlist/bot-filters.html
@@ -145,6 +145,13 @@
</iron-icon>
</div>
</template>
+ <template is="dom-if" if="[[_showDimensionMessage(_primarySelected,_secondaryItems.length)]]">
+ <div class="item">
+ Only dimensions can be used for filtering.
+ <i>"[[_primarySelected]]"</i> is a part of the bot's state and is
+ informational only.
+ </div>
+ </template>
</div>
<div class="selector side-by-side"
@@ -294,6 +301,10 @@ the fleet.">
}
}
return params;
+ },
+
+ _showDimensionMessage: function(primarySelected, selectedItems) {
+ return primarySelected && primarySelected !== "id" && !selectedItems;
}
});
« no previous file with comments | « appengine/swarming/ui/build/elements.html ('k') | appengine/swarming/ui/res/imp/botlist/bot-list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698