| 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 }}
|
|
|