| Index: Tools/GardeningServer/ui/ct-unexpected-failures.html
|
| diff --git a/Tools/GardeningServer/ui/ct-unexpected-failures.html b/Tools/GardeningServer/ui/ct-unexpected-failures.html
|
| index 86fd774a50b0c6539b5cf34a47f12cfe9869f23f..2d676b4d4061f045605c6bbc1c1511678b2c32c5 100644
|
| --- a/Tools/GardeningServer/ui/ct-unexpected-failures.html
|
| +++ b/Tools/GardeningServer/ui/ct-unexpected-failures.html
|
| @@ -6,6 +6,7 @@ found in the LICENSE file.
|
|
|
| <link rel="import" href="../bower_components/paper-button/paper-button.html">
|
| <link rel="import" href="../bower_components/paper-toast/paper-toast.html">
|
| +<link rel="import" href="ct-failing-builders.html">
|
| <link rel="import" href="ct-failure-analyzer.html">
|
| <link rel="import" href="ct-failure-grouper.html">
|
| <link rel="import" href="ct-failure-stream.html">
|
| @@ -17,16 +18,29 @@ found in the LICENSE file.
|
| bottom: 40px;
|
| left: 10px;
|
| }
|
| +
|
| paper-button {
|
| background: #4285f4;
|
| color: #fff;
|
| }
|
| +
|
| + ct-building-grid {
|
| + width: 350px;
|
| + }
|
| +
|
| + ct-failing-builders {
|
| + margin-left: 365px;
|
| + padding: 5px;
|
| + }
|
| </style>
|
| - <ct-failure-analyzer id="analyzer" status="{{analyzerStatus}}" failures="{{failures}}"></ct-failure-analyzer>
|
| - <ct-failure-grouper failures="{{failures}}" groups="{{failureGroups}}"></ct-failure-grouper>
|
| - <paper-button on-tap="{{update}}">Update</paper-button>
|
| - <ct-failure-stream groups="{{failureGroups}}"></ct-failure-stream>
|
| - <paper-toast id="toast" text="{{analyzerStatus}}"></paper-toast>
|
| + <ct-failure-analyzer id="analyzer" status="{{ analyzerStatus }}" failures="{{ failures }}"></ct-failure-analyzer>
|
| + <ct-failure-grouper failures="{{ failures.unexpected }}" groups="{{ failureGroups }}"></ct-failure-grouper>
|
| + <div>
|
| + <paper-button on-tap="{{ update }}">Update</paper-button>
|
| + <ct-failing-builders builders="{{ failures.builders }}"></ct-failing-builders>
|
| + </div>
|
| + <ct-failure-stream groups="{{ failureGroups }}"></ct-failure-stream>
|
| + <paper-toast id="toast" text="{{ analyzerStatus }}"></paper-toast>
|
| </template>
|
| <script>
|
| Polymer({
|
|
|