| Index: appengine/swarming/ui/res/imp/taskpage/task-page.html
|
| diff --git a/appengine/swarming/ui/res/imp/taskpage/task-page.html b/appengine/swarming/ui/res/imp/taskpage/task-page.html
|
| index bf90eed65c8842c37b6c2cb4f6cf987251a54cde..71a63e32f461b4e5a707067a4325a011698fedd9 100644
|
| --- a/appengine/swarming/ui/res/imp/taskpage/task-page.html
|
| +++ b/appengine/swarming/ui/res/imp/taskpage/task-page.html
|
| @@ -493,7 +493,7 @@
|
| <div class="right flex">
|
| <template is="dom-if" if="[[_result.human_completed_ts]]">
|
| <div class="left flex" style="padding-left: 50px; padding-right: 50px">
|
| - <svg-piechart
|
| + <svg-piechart
|
| data="[[_computePiechartData(_result)]]"
|
| colors="["rgb(204,121,167)", "rgb(0,114,178)"]">
|
| </svg-piechart>
|
| @@ -518,9 +518,9 @@
|
| <tr>
|
| <td bgcolor$="[[_highlight(_request.properties.dimensions, dimension.key)]]">
|
| <b>[[dimension.key]]:</b>
|
| - <template
|
| - is="dom-repeat"
|
| - items="[[_aliasResult(_request.properties.dimensions, dimension)]]"
|
| + <template
|
| + is="dom-repeat"
|
| + items="[[_aliasResult(_request.properties.dimensions, dimension)]]"
|
| as="value">
|
| <span class$="[[value.class]] dim">[[value.name]]</span>
|
| </template>
|
| @@ -795,7 +795,7 @@
|
| // requested_dims is the entire _request.properties.dimensions array, but we
|
| // are only passed in one key at a time from _result.bot_dimensions as the
|
| // bot_dim variable. Therefore we need to loop through the key-value pairs
|
| - // of requested_dims to determine whether the current bot dimension was
|
| + // of requested_dims to determine whether the current bot dimension was
|
| // requested.
|
| var boldMap = [];
|
| var target = null;
|
| @@ -1059,7 +1059,7 @@
|
| properties:this._request.properties,
|
| tags: this._request.tags,
|
| user: this._profile.email,
|
| - service_account: this._request.service_account,
|
| + service_account_token: this._request.service_account,
|
| }
|
| newTask.properties.dimensions = this._retry_dimensions.filter(function(d){
|
| return d && d.key && d.value;
|
|
|