Chromium Code Reviews| 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 77405f3e57cef959a6dd092043c022f7d4b60960..c42c05de7334705ae35bc5278a601de2ab2a8a5b 100644 |
| --- a/Tools/GardeningServer/ui/ct-unexpected-failures.html |
| +++ b/Tools/GardeningServer/ui/ct-unexpected-failures.html |
| @@ -8,6 +8,7 @@ found in the LICENSE file. |
| <link rel="import" href="../model/ct-commit-log.html"> |
| <link rel="import" href="ct-failure-analyzer.html"> |
| <link rel="import" href="ct-failure-stream.html"> |
| +<link rel="import" href="ct-last-updated.html"> |
| <link rel="import" href="ct-tree-status.html"> |
| <polymer-element name="ct-unexpected-failures" attributes="tree"> |
| @@ -25,10 +26,19 @@ found in the LICENSE file. |
| margin: 0; |
| padding: 0; |
| } |
| + |
| + ct-last-updated { |
| + white-space: nowrap; |
| + overflow: hidden; |
| + text-overflow: ellipsis; |
| + margin: 5px; |
| + padding: 3px; |
| + } |
| </style> |
| - <ct-failure-analyzer id="analyzer" failures="{{ failures }}" builderLatestRevisions="{{ builderLatestRevisions }}"></ct-failure-analyzer> |
| + <ct-failure-analyzer id="analyzer" failures="{{ failures }}" builderLatestRevisions="{{ builderLatestRevisions }}" date="{{ date }}"></ct-failure-analyzer> |
| <ct-tree-status project="chromium"></ct-tree-status> |
| <ct-tree-status project="blink"></ct-tree-status> |
| + <ct-last-updated id="last_updated" date="{{ date }}"></ct-last-updated> |
|
ojan
2014/08/08 06:05:13
I'd like to conserve this screen real estate as mu
teravest
2014/08/08 22:21:28
Sounds good. I've moved this into the top bar and
|
| <ct-failure-stream groups="{{ failures[tree] }}" commits="{{ revisionLog }}" tree="{{ tree }}"></ct-failure-stream> |
| </template> |
| <script> |
| @@ -51,6 +61,7 @@ found in the LICENSE file. |
| var treeStatuses = this.shadowRoot.querySelectorAll("ct-tree-status"); |
| for (var i = 0; i < treeStatuses.length; i++) |
| treeStatuses[i].update(); |
| + this.$.last_updated.update(); |
| }, |
| }); |
| })(); |