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

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

Issue 2858953002: Fix accidental alias deapplication (Closed)
Patch Set: Created 3 years, 8 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/ui/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/ui/res/imp/tasklist/task-filters.html
diff --git a/appengine/swarming/ui/res/imp/tasklist/task-filters.html b/appengine/swarming/ui/res/imp/tasklist/task-filters.html
index ae64c550c280d83de0c7418df0416ae6e077a037..1c109a59ba42ec6d0aaae97ee91d31df1a97c7e2 100644
--- a/appengine/swarming/ui/res/imp/tasklist/task-filters.html
+++ b/appengine/swarming/ui/res/imp/tasklist/task-filters.html
@@ -372,7 +372,10 @@
// it is more user friendly.
rest = "";
}
- tags.push(col + this.FILTER_SEP + swarming.alias.unapply(rest))
+ if (swarming.alias.DIMENSIONS_WITH_ALIASES.indexOf(col) !== -1) {
+ rest = swarming.alias.unapply(rest);
+ }
+ tags.push(col + this.FILTER_SEP + rest);
}
}.bind(this));
params["tags"] = tags;
« no previous file with comments | « appengine/swarming/ui/res/imp/botlist/bot-filters.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698