Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1232)

Unified Diff: milo/appengine/frontend/templates/buildbot/pages/builder.html

Issue 2298613002: Milo: Fix builder status (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/templates/buildbot/pages/builder.html
diff --git a/milo/appengine/frontend/templates/buildbot/pages/builder.html b/milo/appengine/frontend/templates/buildbot/pages/builder.html
index 5e582855880dd81dedf31b93fd61fef684fa7f5d..17d2b9dad6e8ddb2300b7ccb2f2da7d9fd951374 100644
--- a/milo/appengine/frontend/templates/buildbot/pages/builder.html
+++ b/milo/appengine/frontend/templates/buildbot/pages/builder.html
@@ -58,11 +58,11 @@
<td>{{ .ExecutionTime.Finished | localTime "" }}</td>
<td class="revision">{{ .Revision }}</td>
{{ if eq .Status.String "Success" }}
- <td class="success">Success</td>
+ <td class="status-Success">Success</td>
{{ else if eq .Status.String "Failure" }}
- <td class="failure">Failed</td>
+ <td class="status-Failure">Failed</td>
{{ else if eq .Status.String "InfraFailure" }}
- <td class="exception">Infra Failure</td>
+ <td class="status-Exception">Infra Failure</td>
{{ else }}
<td> {{ .Status.String }} </td>
{{ end }}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698