| Index: appengine/swarming/elements/res/imp/botlist/bot-list-data.html
|
| diff --git a/appengine/swarming/elements/res/imp/botlist/bot-list-data.html b/appengine/swarming/elements/res/imp/botlist/bot-list-data.html
|
| index ae482e114c1f353400e52a3a6f31a289e862b700..3461fe2f5359d0c077a474178ad8cc1652177463 100644
|
| --- a/appengine/swarming/elements/res/imp/botlist/bot-list-data.html
|
| +++ b/appengine/swarming/elements/res/imp/botlist/bot-list-data.html
|
| @@ -62,6 +62,8 @@
|
|
|
| <link rel="import" href="/res/imp/bower_components/iron-ajax/iron-ajax.html">
|
|
|
| +<link rel="import" href="/res/imp/common/common-aliases.html">
|
| +
|
| <link rel="import" href="bot-list-shared.html">
|
|
|
| <dom-module id="bot-list-data">
|
| @@ -98,7 +100,10 @@
|
| Polymer({
|
| is: 'bot-list-data',
|
|
|
| - behaviors: [SwarmingBehaviors.BotListBehavior],
|
| + behaviors: [
|
| + SwarmingBehaviors.BotListBehavior,
|
| + SwarmingBehaviors.Aliases,
|
| + ],
|
|
|
| properties: {
|
| // inputs
|
| @@ -132,7 +137,7 @@
|
| notify: true,
|
| },
|
| primary_map: {
|
| - type:Object,
|
| + type: Object,
|
| computed: "_primaryMap(_dimensions)",
|
| notify: true,
|
| },
|
| @@ -219,6 +224,7 @@
|
| dims.push(d.key);
|
| }
|
| });
|
| + dims.push("id");
|
| dims.sort();
|
| return dims;
|
| },
|
|
|