Chromium Code Reviews| 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 f7a383df6f3c20c91db362423245f0818f80e425..4caa99cec81964e070fd839319c956afc16076bc 100644 |
| --- a/Tools/GardeningServer/ui/ct-builder-grid.html |
| +++ b/Tools/GardeningServer/ui/ct-builder-grid.html |
| @@ -129,13 +129,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) |
|
ojan
2014/07/21 00:44:56
With the new backend, we only have data for unexpe
|
| - 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); |