| Index: Tools/GardeningServer/ui/ct-builder-grid.html
|
| diff --git a/Tools/GardeningServer/ui/ct-builder-grid.html b/Tools/GardeningServer/ui/ct-builder-grid.html
|
| index e4d332da0f8fd34778438a97f48da452768bee48..81a8b696aa94893b4e7b4b35c06275a5076b8817 100644
|
| --- a/Tools/GardeningServer/ui/ct-builder-grid.html
|
| +++ b/Tools/GardeningServer/ui/ct-builder-grid.html
|
| @@ -125,13 +125,10 @@ found in the LICENSE file.
|
| passingRevisions.push(failure.newestPassingRevision);
|
| var results = failure.resultNodesByBuilder;
|
| Object.keys(results, (function(builder) {
|
| - var result = results[builder];
|
| - if (!result.is_unexpected)
|
| - return;
|
| -
|
| - if (!Object.has(this.resultTypes, result.actual))
|
| - this.resultTypes[result.actual] = {};
|
| - this.resultTypes[result.actual][builder] =
|
| + var result = results[builder].actual;
|
| + if (!Object.has(this.resultTypes, result))
|
| + this.resultTypes[result] = {};
|
| + this.resultTypes[result][builder] =
|
| config.builders[builder];
|
| }).bind(this));
|
| }, this);
|
|
|