Merge pull request #120 from minciue/master

Show committer's name in builds list
This commit is contained in:
Piotr Sarnacki 2013-02-05 10:02:50 -08:00
commit 36fb57b093
2 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,9 @@
<th> <th>
{{t builds.commit}} {{t builds.commit}}
</th> </th>
<th class="committer">
{{t builds.commiter}}
</th>
{{#if view.isPullRequestsList}} {{#if view.isPullRequestsList}}
<th> <th>
{{t builds.pr}} {{t builds.pr}}
@ -36,6 +39,9 @@
{{formatCommit commit}} {{formatCommit commit}}
</a> </a>
</td> </td>
<td class="committer">
{{commit.committerName}}
</td>
{{#if commit.pullRequestNumber}} {{#if commit.pullRequestNumber}}
<td> <td>
<a {{bindAttr href="view.urlGithubPullRequest"}}> <a {{bindAttr href="view.urlGithubPullRequest"}}>

View File

@ -78,3 +78,6 @@ html, body
#left .finished_at_label #left .finished_at_label
display: none display: none
@media screen and (max-width: 1310px)
table#builds .committer
display: none